diff options
author | Charles Krinke | 2009-02-22 20:52:55 +0000 |
---|---|---|
committer | Charles Krinke | 2009-02-22 20:52:55 +0000 |
commit | 8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49 (patch) | |
tree | 96a24a49de82056060dd9b7bab0cb209d5f1a129 /OpenSim/Framework/Util.cs | |
parent | Allow delivery of object messages gridwide (diff) | |
download | opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.zip opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.gz opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.bz2 opensim-SC_OLD-8f55b9d735fbc975ce7a4b54e972c17ffbfb1f49.tar.xz |
Mantis#3218. Thank you kindly, TLaukkan (Tommil) for a patch that:
* Added log4net dependency to physxplugin in prebuild.xml.
* Added missing m_log fields to classes.
* Replaced Console.WriteLine with appropriate m_log.Xxxx
* Tested that nant test target runs succesfully.
* Tested that local opensim sandbox starts up without errors.
Diffstat (limited to 'OpenSim/Framework/Util.cs')
-rw-r--r-- | OpenSim/Framework/Util.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/OpenSim/Framework/Util.cs b/OpenSim/Framework/Util.cs index dcac9f1..2718072 100644 --- a/OpenSim/Framework/Util.cs +++ b/OpenSim/Framework/Util.cs | |||
@@ -700,8 +700,7 @@ namespace OpenSim.Framework | |||
700 | } | 700 | } |
701 | catch (Exception e) | 701 | catch (Exception e) |
702 | { | 702 | { |
703 | System.Console.WriteLine(e.Message); | 703 | m_log.Error(e.ToString()); |
704 | System.Console.WriteLine(e.StackTrace); | ||
705 | } | 704 | } |
706 | finally | 705 | finally |
707 | { | 706 | { |
@@ -728,8 +727,7 @@ namespace OpenSim.Framework | |||
728 | } | 727 | } |
729 | catch (Exception e) | 728 | catch (Exception e) |
730 | { | 729 | { |
731 | System.Console.WriteLine(e.Message); | 730 | m_log.Error(e.ToString()); |
732 | System.Console.WriteLine(e.StackTrace); | ||
733 | } | 731 | } |
734 | finally | 732 | finally |
735 | { | 733 | { |