aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-08-24 22:56:05 +0100
committerJustin Clark-Casey (justincc)2012-08-24 22:56:05 +0100
commitba58331b29225ead620087ca4ff3bae4a905994d (patch)
treea55e831b2147fcac93b1ab63b2e8b9c61eb22036 /OpenSim/Region
parentIf a connecting scene presence is replacing an existing scene presence then b... (diff)
downloadopensim-SC_OLD-ba58331b29225ead620087ca4ff3bae4a905994d.zip
opensim-SC_OLD-ba58331b29225ead620087ca4ff3bae4a905994d.tar.gz
opensim-SC_OLD-ba58331b29225ead620087ca4ff3bae4a905994d.tar.bz2
opensim-SC_OLD-ba58331b29225ead620087ca4ff3bae4a905994d.tar.xz
Extend "Restarting scripts in attachments" debug log message to show actual name of user and the region they are in
Diffstat (limited to 'OpenSim/Region')
-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 65d526f..5bf69ad 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 {