mirror of
https://github.com/opensim/opensim.git
synced 2026-05-16 19:56:04 +08:00
Update svn properties.
This commit is contained in:
@@ -1,21 +1,21 @@
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using log4net;
|
||||
|
||||
namespace OpenSim.Region.Modules.Python.PythonAPI
|
||||
{
|
||||
class Console
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
public void WriteLine(string txt)
|
||||
{
|
||||
m_log.Info(txt);
|
||||
}
|
||||
|
||||
public void WriteLine(string txt, params Object[] e)
|
||||
{
|
||||
m_log.Info(String.Format(txt, e));
|
||||
}
|
||||
}
|
||||
}
|
||||
using System;
|
||||
using System.Reflection;
|
||||
using log4net;
|
||||
|
||||
namespace OpenSim.Region.Modules.Python.PythonAPI
|
||||
{
|
||||
class Console
|
||||
{
|
||||
private static readonly ILog m_log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);
|
||||
|
||||
public void WriteLine(string txt)
|
||||
{
|
||||
m_log.Info(txt);
|
||||
}
|
||||
|
||||
public void WriteLine(string txt, params Object[] e)
|
||||
{
|
||||
m_log.Info(String.Format(txt, e));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user