aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Modules/Python/PythonAPI/Console.cs
diff options
context:
space:
mode:
authorJeff Ames2008-05-09 16:24:28 +0000
committerJeff Ames2008-05-09 16:24:28 +0000
commitf9c6cc36e153baeddc873b6c69698dcfa63161f0 (patch)
tree4a1e95fa6acfb6150c3ffe6391558d8166a70a1b /OpenSim/Region/Modules/Python/PythonAPI/Console.cs
parent* Minor: Insert utility function to format raw xml strings into indented xml ... (diff)
downloadopensim-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 '')
-rw-r--r--OpenSim/Region/Modules/Python/PythonAPI/Console.cs42
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 @@
1using System; 1using System;
2using System.Reflection; 2using System.Reflection;
3using log4net; 3using log4net;
4 4
5namespace OpenSim.Region.Modules.Python.PythonAPI 5namespace 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}