diff options
author | Jeff Ames | 2008-05-09 16:24:28 +0000 |
---|---|---|
committer | Jeff Ames | 2008-05-09 16:24:28 +0000 |
commit | f9c6cc36e153baeddc873b6c69698dcfa63161f0 (patch) | |
tree | 4a1e95fa6acfb6150c3ffe6391558d8166a70a1b /OpenSim/Region/Modules/Python/PythonAPI | |
parent | * Minor: Insert utility function to format raw xml strings into indented xml ... (diff) | |
download | opensim-SC_OLD-f9c6cc36e153baeddc873b6c69698dcfa63161f0.zip opensim-SC_OLD-f9c6cc36e153baeddc873b6c69698dcfa63161f0.tar.gz opensim-SC_OLD-f9c6cc36e153baeddc873b6c69698dcfa63161f0.tar.bz2 opensim-SC_OLD-f9c6cc36e153baeddc873b6c69698dcfa63161f0.tar.xz |
Update svn properties.
Diffstat (limited to 'OpenSim/Region/Modules/Python/PythonAPI')
-rw-r--r-- | OpenSim/Region/Modules/Python/PythonAPI/Console.cs | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/OpenSim/Region/Modules/Python/PythonAPI/Console.cs b/OpenSim/Region/Modules/Python/PythonAPI/Console.cs index 0d23dc6..3fe1f91 100644 --- a/OpenSim/Region/Modules/Python/PythonAPI/Console.cs +++ b/OpenSim/Region/Modules/Python/PythonAPI/Console.cs | |||
@@ -1,21 +1,21 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Reflection; | 2 | using System.Reflection; |
3 | using log4net; | 3 | using log4net; |
4 | 4 | ||
5 | namespace OpenSim.Region.Modules.Python.PythonAPI | 5 | namespace OpenSim.Region.Modules.Python.PythonAPI |
6 | { | 6 | { |
7 | class Console | 7 | class Console |
8 | { | 8 | { |
9 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); | 9 | private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType); |
10 | 10 | ||
11 | public void WriteLine(string txt) | 11 | public void WriteLine(string txt) |
12 | { | 12 | { |
13 | m_log.Info(txt); | 13 | m_log.Info(txt); |
14 | } | 14 | } |
15 | 15 | ||
16 | public void WriteLine(string txt, params Object[] e) | 16 | public void WriteLine(string txt, params Object[] e) |
17 | { | 17 | { |
18 | m_log.Info(String.Format(txt, e)); | 18 | m_log.Info(String.Format(txt, e)); |
19 | } | 19 | } |
20 | } | 20 | } |
21 | } | 21 | } |