aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-08-24 22:56:05 +0100
committerJustin Clark-Casey (justincc)2012-08-24 22:57:18 +0100
commitd80eda202f7623d89bfb69fc2e2f04405067e4a4 (patch)
treea8ca0302a0dc08bcbcd65c8dd0d541e3e2cf4b5e
parentIf a connecting scene presence is replacing an existing scene presence then b... (diff)
downloadopensim-SC_OLD-0.7.4-rc2.zip
opensim-SC_OLD-0.7.4-rc2.tar.gz
opensim-SC_OLD-0.7.4-rc2.tar.bz2
opensim-SC_OLD-0.7.4-rc2.tar.xz
Extend "Restarting scripts in attachments" debug log message to show actual name of user and the region they are in0.7.4-rc2
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index 548dfd3..95f466f 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -891,7 +891,9 @@ namespace OpenSim.Region.Framework.Scenes
891 { 891 {
892 if (wasChild && HasAttachments()) 892 if (wasChild && HasAttachments())
893 { 893 {
894 m_log.DebugFormat("[SCENE PRESENCE]: Restarting scripts in attachments..."); 894 m_log.DebugFormat(
895 "[SCENE PRESENCE]: Restarting scripts in attachments for {0} in {1}", Name, Scene.Name);
896
895 // Resume scripts 897 // Resume scripts
896 foreach (SceneObjectGroup sog in m_attachments) 898 foreach (SceneObjectGroup sog in m_attachments)
897 { 899 {