Mercurial > pub > ImplabNet
changeset 44:e5ec543feee3
Рефакторинг, журналирование
author | cin |
---|---|
date | Wed, 16 Apr 2014 19:02:58 +0400 |
parents | 7c2369f580b8 |
children | 9ce97b262a7a f8cbe84cfdb1 |
files | Implab/Diagnostics/TextFileListener.cs |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/Implab/Diagnostics/TextFileListener.cs Wed Apr 16 10:12:56 2014 +0400 +++ b/Implab/Diagnostics/TextFileListener.cs Wed Apr 16 19:02:58 2014 +0400 @@ -8,7 +8,7 @@ public class TextFileListener: TextListenerBase { readonly TextWriter m_textWriter; - public TextFileListener(string fileName) : base(true) { + public TextFileListener(string fileName, bool local) : base(local) { m_textWriter = File.CreateText(fileName); m_textWriter.WriteLine("LOG {0}", DateTime.Now);