1 |
using System; |
2 |
using System.Collections.Generic; |
3 |
using System.Text; |
4 |
using log4net.Config; |
5 |
using log4net; |
6 |
using System.IO; |
7 |
using log4net.Util; |
8 |
using System.Reflection; |
9 |
using System.Collections; |
10 |
|
11 |
namespace AnywhereTS |
12 |
{ |
13 |
public static class Logging |
14 |
{ |
15 |
static Logging() { Logging.Initialize(); } |
16 |
private static void Initialize() { XmlConfigurator.Configure(new FileInfo("AnywhereTS.Logging.dll.config")); } |
17 |
|
18 |
#region Log access |
19 |
public static readonly ILog ATSAdminLog = LogManager.GetLogger("AnywhereTS.ATSAmdin"); |
20 |
public static readonly ILog TSControlPanelLog = LogManager.GetLogger("AnywhereTS.TSControlPanel"); |
21 |
#endregion |
22 |
|
23 |
#region log4net help |
24 |
public static List<string> GetMessagesFromThreadContextStack(string RawContextStack) |
25 |
{ |
26 |
try |
27 |
{ |
28 |
ThreadContextStack tc = ThreadContext.Stacks[RawContextStack.ToUpper()]; |
29 |
if (tc == null) { return new List<string>(); } |
30 |
else { return GetMessagesFromThreadContextStack(tc); } |
31 |
} |
32 |
catch { return new List<string>(); } |
33 |
} |
34 |
public static List<string> GetMessagesFromThreadContextStack(ThreadContextStack rawTCS) |
35 |
{ |
36 |
ThreadContextStack oldrawTCS = rawTCS; |
37 |
List<string> stack_objects = new List<string>(); |
38 |
|
39 |
ThreadContextStack context = (rawTCS as ThreadContextStack); |
40 |
for (int i = 0; i < context.Count; i++) |
41 |
{ |
42 |
Type t = typeof(ThreadContextStack); |
43 |
MethodInfo mi = t.GetMethod("GetFullMessage", BindingFlags.NonPublic | BindingFlags.Instance); |
44 |
string message = mi.Invoke(context, null).ToString(); |
45 |
stack_objects.Add(message); |
46 |
context.Pop(); |
47 |
} |
48 |
rawTCS = oldrawTCS; |
49 |
return stack_objects; |
50 |
} |
51 |
#endregion |
52 |
} |
53 |
} |