Add Flush() method to LogWriter. Also correct line endings to Linux form.
parent
f2c78281ce
commit
1e5869dcf6
|
@ -111,6 +111,15 @@ namespace OpenSim.Region.CoreModules.Framework.Statistics.Logging
|
||||||
Write(String.Format(line, args));
|
Write(String.Format(line, args));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void Flush()
|
||||||
|
{
|
||||||
|
if (!Enabled) return;
|
||||||
|
if (m_logFile != null)
|
||||||
|
{
|
||||||
|
m_logFile.Flush();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public void Write(string line)
|
public void Write(string line)
|
||||||
{
|
{
|
||||||
if (!Enabled) return;
|
if (!Enabled) return;
|
||||||
|
|
Loading…
Reference in New Issue