* Added some debug information when console commands fail.

0.6.1-post-fixes
Adam Frisby 2008-11-24 16:23:45 +00:00
parent 2a8ff937d5
commit 6fb254965d
1 changed files with 1 additions and 0 deletions

View File

@ -406,6 +406,7 @@ namespace OpenSim.Framework.Console
catch (Exception e) catch (Exception e)
{ {
m_log.ErrorFormat("[Console]: Command [{0}] failed with exception {1}", cmdline, e.ToString()); m_log.ErrorFormat("[Console]: Command [{0}] failed with exception {1}", cmdline, e.ToString());
m_log.Error(e.StackTrace);
} }
} }