Log.cs
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
using System;
namespace Model
{
public class Log
{
private readonly log4net.ILog LOG;
public Log(string name)
{
LOG = log4net.LogManager.GetLogger(name);
}
public System.Windows.Forms.TextBox LogBox { set; get; }
public void Info(string s)
{
LOG.Info(s);
}
public void Debug(string s)
{
LOG.Debug(s);
}
public void Warn(string s)
{
LOG.Warn(s);
}
public void Error(string s, Exception ex)
{
LOG.Error(s, ex);
}
public void UI_Display(string s)
{
if (LogBox == null) return;
string time = string.Format("[{0:HH:mm:ss}] ", DateTime.Now);
LogBox.Invoke(new Action(() =>
{
LogBox.AppendText(time + s + "\r\n");
//LogBox.SelectionStart = LogBox.Text.Length;
LogBox.ScrollToCaret();
}));
}
}
//public class LogRun
//{
// private readonly log4net.ILog LOG;
// public LogRun(string name)
// {
// LOG = log4net.LogManager.GetLogger(name);
// }
// public void Info(string s)
// {
// LOG.Info(s);
// }
//}
}