diff options
author | Justin Clark-Casey (justincc) | 2013-08-23 01:21:03 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-09-04 00:44:52 +0100 |
commit | e05d11faa582b548db345ef379b3862a79f67a18 (patch) | |
tree | 78421c760e0516f4a7c05a3299c7a6dcf5bcd334 /OpenSim/Region | |
parent | Make pCampbot "show bot" command take the bot number instead of the full bot ... (diff) | |
download | opensim-SC_OLD-e05d11faa582b548db345ef379b3862a79f67a18.zip opensim-SC_OLD-e05d11faa582b548db345ef379b3862a79f67a18.tar.gz opensim-SC_OLD-e05d11faa582b548db345ef379b3862a79f67a18.tar.bz2 opensim-SC_OLD-e05d11faa582b548db345ef379b3862a79f67a18.tar.xz |
minor: shortern warning messages in EntityTransferModule when UpdateAgent() fails
Diffstat (limited to 'OpenSim/Region')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs index 316f882..4219254 100644 --- a/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs +++ b/OpenSim/Region/CoreModules/Framework/EntityTransfer/EntityTransferModule.cs | |||
@@ -832,8 +832,8 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
832 | } | 832 | } |
833 | 833 | ||
834 | m_log.WarnFormat( | 834 | m_log.WarnFormat( |
835 | "[ENTITY TRANSFER MODULE]: UpdateAgent failed on teleport of {0} to {1} from {2}. Keeping avatar in source region.", | 835 | "[ENTITY TRANSFER MODULE]: UpdateAgent failed on teleport of {0} to {1}. Keeping avatar in {2}", |
836 | sp.Name, finalDestination.RegionName, sp.Scene.RegionInfo.RegionName); | 836 | sp.Name, finalDestination.RegionName, sp.Scene.Name); |
837 | 837 | ||
838 | Fail(sp, finalDestination, logout, currentAgentCircuit.SessionID.ToString(), "Connection between viewer and destination region could not be established."); | 838 | Fail(sp, finalDestination, logout, currentAgentCircuit.SessionID.ToString(), "Connection between viewer and destination region could not be established."); |
839 | return; | 839 | return; |
@@ -1056,8 +1056,8 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer | |||
1056 | } | 1056 | } |
1057 | 1057 | ||
1058 | m_log.WarnFormat( | 1058 | m_log.WarnFormat( |
1059 | "[ENTITY TRANSFER MODULE]: UpdateAgent failed on teleport of {0} to {1} from {2}. Keeping avatar in source region.", | 1059 | "[ENTITY TRANSFER MODULE]: UpdateAgent failed on teleport of {0} to {1}. Keeping avatar in {2}", |
1060 | sp.Name, finalDestination.RegionName, sp.Scene.RegionInfo.RegionName); | 1060 | sp.Name, finalDestination.RegionName, sp.Scene.Name); |
1061 | 1061 | ||
1062 | Fail(sp, finalDestination, logout, currentAgentCircuit.SessionID.ToString(), "Connection between viewer and destination region could not be established."); | 1062 | Fail(sp, finalDestination, logout, currentAgentCircuit.SessionID.ToString(), "Connection between viewer and destination region could not be established."); |
1063 | return; | 1063 | return; |