##// END OF EJS Templates
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler...
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation

File last commit:

r134:04d4c92d0f28 v2
r187:dd4a3590f9c6 ref20160224
Show More
TextFileListener.cs
46 lines | 1.4 KiB | text/x-csharp | CSharpLexer
using System;
using System.IO;
using System.Text;
namespace Implab.Diagnostics {
public class TextFileListener: ListenerBase {
readonly TextWriter m_textWriter;
public TextFileListener(string fileName) {
m_textWriter = File.CreateText(fileName);
m_textWriter.WriteLine("LOG {0}", DateTime.Now);
}
#region implemented abstract members of ListenerBase
public override void Write(LogEventArgs args, object entry) {
var msg = new StringBuilder();
for (int i = 0; i < args.Operation.Level; i++)
msg.Append(" ");
msg.AppendFormat("[{0}]:{1}: {2}", args.ThreadId, args.ChannelName, entry);
lock (m_textWriter) {
if (!IsDisposed) {
// тут гарантировано еще не освобожден m_textWriter
m_textWriter.WriteLine(msg);
m_textWriter.Flush();
}
}
}
#endregion
protected override void Dispose(bool disposing) {
base.Dispose(disposing);
if (disposing) {
// IsDisposed = true
lock (m_textWriter) {
Safe.Dispose(m_textWriter);
}
}
}
}
}