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 |
Type t = typeof(ThreadContextStack); |
37 |
//ConstructorInfo ci = t.GetConstructor(BindingFlags.NonPublic | BindingFlags.Instance, null, new Type[0], null); |
38 |
//ThreadContextStack tmpRawTCS = null; |
39 |
//tmpRawTCS = (ThreadContextStack)ci.Invoke(null); |
40 |
List<string> stObjects = new List<string>(); |
41 |
ThreadContextStack context = (rawTCS as ThreadContextStack); |
42 |
for (int i = 0; i < context.Count; i++) |
43 |
{ |
44 |
MethodInfo mi = t.GetMethod("GetFullMessage", BindingFlags.NonPublic | BindingFlags.Instance); |
45 |
string message = mi.Invoke(context, null).ToString(); |
46 |
stObjects.Add(message); |
47 |
context.Pop(); |
48 |
} |
49 |
stObjects.Reverse(); |
50 |
rawTCS.Clear(); |
51 |
// push the popped Context message back onto the original ContextStack |
52 |
foreach (string stObject in stObjects) { rawTCS.Push(stObject); } |
53 |
return stObjects; |
54 |
} |
55 |
#endregion |
56 |
} |
57 |
} |