aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-02-14 01:50:51 +0000
committerJustin Clark-Casey (justincc)2012-02-14 01:50:51 +0000
commit04986bbb159754cb835ef6f698b2cc9c37f02b4b (patch)
tree144ded5c9aa309c5679d99915ba2a9e09d6dcbe4 /OpenSim
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-04986bbb159754cb835ef6f698b2cc9c37f02b4b.zip
opensim-SC_OLD-04986bbb159754cb835ef6f698b2cc9c37f02b4b.tar.gz
opensim-SC_OLD-04986bbb159754cb835ef6f698b2cc9c37f02b4b.tar.bz2
opensim-SC_OLD-04986bbb159754cb835ef6f698b2cc9c37f02b4b.tar.xz
Add some more data to the new user connection logging for debug purposes.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 3347822..4c8e2d2 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3272,9 +3272,9 @@ namespace OpenSim.Region.Framework.Scenes
3272 3272
3273 // Don't disable this log message - it's too helpful 3273 // Don't disable this log message - it's too helpful
3274 m_log.DebugFormat( 3274 m_log.DebugFormat(
3275 "[SCENE]: Region {0} told of incoming {1} agent {2} {3} {4} (circuit code {5}, teleportflags {6}, position {7})", 3275 "[SCENE]: Region {0} told of incoming {1} agent {2} {3} {4} (circuit code {5}, IP {6}, viewer {7}, teleportflags {8}, position {9})",
3276 RegionInfo.RegionName, (agent.child ? "child" : "root"), agent.firstname, agent.lastname, 3276 RegionInfo.RegionName, (agent.child ? "child" : "root"),agent.firstname, agent.lastname,
3277 agent.AgentID, agent.circuitcode, teleportFlags, agent.startpos); 3277 agent.AgentID, agent.circuitcode, agent.IPAddress, agent.Viewer, teleportFlags, agent.startpos);
3278 3278
3279 if (LoginsDisabled) 3279 if (LoginsDisabled)
3280 { 3280 {