aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-05-19 19:57:45 +0000
committerJustin Clarke Casey2009-05-19 19:57:45 +0000
commitcd90ea377ef78c2ced1fabe824bb72818ba81a04 (patch)
tree0bebef7ed2c769eea1d0a4071e0761460cc40484 /OpenSim
parent* Take another attempt at http://opensimulator.org/mantis/view.php?id=3191 (diff)
downloadopensim-SC_OLD-cd90ea377ef78c2ced1fabe824bb72818ba81a04.zip
opensim-SC_OLD-cd90ea377ef78c2ced1fabe824bb72818ba81a04.tar.gz
opensim-SC_OLD-cd90ea377ef78c2ced1fabe824bb72818ba81a04.tar.bz2
opensim-SC_OLD-cd90ea377ef78c2ced1fabe824bb72818ba81a04.tar.xz
* minor: Tweak the command exception catcher of last resort to make a little more sense
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Application/Application.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Application/Application.cs b/OpenSim/Region/Application/Application.cs
index 46e3fc9..3413e13 100644
--- a/OpenSim/Region/Application/Application.cs
+++ b/OpenSim/Region/Application/Application.cs
@@ -122,7 +122,7 @@ namespace OpenSim
122 } 122 }
123 catch (Exception e) 123 catch (Exception e)
124 { 124 {
125 m_log.Error("Caught exception from command: {0}", e); 125 m_log.ErrorFormat("Command error: {0}", e);
126 } 126 }
127 } 127 }
128 } 128 }