aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.cs')
-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 4b24ba2..5428e5d 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -2466,7 +2466,7 @@ namespace OpenSim.Region.Framework.Scenes
2466 } 2466 }
2467 catch (Exception e) 2467 catch (Exception e)
2468 { 2468 {
2469 m_log.WarnFormat("[SCENE]: Problem casting object: {0}", e.Message); 2469 m_log.WarnFormat("[SCENE]: Problem casting object: " + e.ToString());
2470 return false; 2470 return false;
2471 } 2471 }
2472 2472
@@ -3464,7 +3464,7 @@ namespace OpenSim.Region.Framework.Scenes
3464 } 3464 }
3465 catch (Exception e) 3465 catch (Exception e)
3466 { 3466 {
3467 m_log.DebugFormat("[CONNECTION BEGIN]: Exception verifying presence {0}", e.Message); 3467 m_log.ErrorFormat("[CONNECTION BEGIN]: Exception verifying presence " + e.ToString());
3468 return false; 3468 return false;
3469 } 3469 }
3470 3470
@@ -3475,7 +3475,7 @@ namespace OpenSim.Region.Framework.Scenes
3475 } 3475 }
3476 catch (Exception e) 3476 catch (Exception e)
3477 { 3477 {
3478 m_log.DebugFormat("[CONNECTION BEGIN]: Exception authorizing user {0}", e.Message); 3478 m_log.ErrorFormat("[CONNECTION BEGIN]: Exception authorizing user " + e.ToString());
3479 return false; 3479 return false;
3480 } 3480 }
3481 3481