aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Environment/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
authorTeravus Ovares2009-01-02 14:24:49 +0000
committerTeravus Ovares2009-01-02 14:24:49 +0000
commitb1a677630fef0a1104013d4105e58b9bcb17ce2d (patch)
treeb108cb9eebc2593f7b233ebc0bfd91e104d90912 /OpenSim/Region/Environment/Scenes/ScenePresence.cs
parentFixes Mantis #2945 (diff)
downloadopensim-SC_OLD-b1a677630fef0a1104013d4105e58b9bcb17ce2d.zip
opensim-SC_OLD-b1a677630fef0a1104013d4105e58b9bcb17ce2d.tar.gz
opensim-SC_OLD-b1a677630fef0a1104013d4105e58b9bcb17ce2d.tar.bz2
opensim-SC_OLD-b1a677630fef0a1104013d4105e58b9bcb17ce2d.tar.xz
* Adding some recognizable and search-able test to some WriteLine(e.ToString()) messages so that when they occur, we can figure out what threw them.
Diffstat (limited to 'OpenSim/Region/Environment/Scenes/ScenePresence.cs')
-rw-r--r--OpenSim/Region/Environment/Scenes/ScenePresence.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/Environment/Scenes/ScenePresence.cs b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
index 166e051..205d5cc 100644
--- a/OpenSim/Region/Environment/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Environment/Scenes/ScenePresence.cs
@@ -411,7 +411,7 @@ namespace OpenSim.Region.Environment.Scenes
411 } 411 }
412 catch (Exception e) 412 catch (Exception e)
413 { 413 {
414 Console.WriteLine(e.Message); 414 Console.WriteLine("[SCENEPRESENCE]: ABSOLUTE POSITION " + e.Message);
415 } 415 }
416 } 416 }
417 417
@@ -451,7 +451,7 @@ namespace OpenSim.Region.Environment.Scenes
451 } 451 }
452 catch (Exception e) 452 catch (Exception e)
453 { 453 {
454 Console.WriteLine(e.Message); 454 Console.WriteLine("[SCENEPRESENCE]: VELOCITY " + e.Message);
455 } 455 }
456 } 456 }
457 457
@@ -1374,7 +1374,7 @@ namespace OpenSim.Region.Environment.Scenes
1374 catch (Exception ex) 1374 catch (Exception ex)
1375 { 1375 {
1376 //Why did I get this error? 1376 //Why did I get this error?
1377 System.Diagnostics.Debug.WriteLine(ex.ToString()); 1377 Console.WriteLine("[SCENEPRESENCE]: DoMoveToPosition" + ex.ToString());
1378 } 1378 }
1379 } 1379 }
1380 1380