52 |
|
void OnLogFlush(string logmessage) |
53 |
|
{ |
54 |
|
if (this.IsDisposed) { return; } |
55 |
– |
Console.Write(logmessage); |
55 |
|
UpdateStatus(logmessage); |
56 |
|
UpdateLogOutput(logmessage); |
57 |
|
Application.DoEvents(); |
147 |
|
} |
148 |
|
catch (Exception ex) |
149 |
|
{ |
150 |
< |
gLog.Log.Error.WriteLine(ex.ToString()); |
150 |
> |
gLog.Error.WriteLine(ex.ToString()); |
151 |
|
} |
152 |
|
} |
153 |
|
|
171 |
|
} |
172 |
|
catch (Exception ex) |
173 |
|
{ |
174 |
< |
gLog.Log.Error.WriteLine(ex.ToString()); |
174 |
> |
gLog.Error.WriteLine(ex.ToString()); |
175 |
|
} |
176 |
|
} |
177 |
|
|
191 |
|
} |
192 |
|
catch (Exception ex) |
193 |
|
{ |
194 |
< |
gLog.Log.Error.WriteLine(ex.ToString()); |
194 |
> |
gLog.Error.WriteLine(ex.ToString()); |
195 |
|
} |
196 |
|
} |
197 |
|
|