Parent Directory
|
Revision Log
+ add logging support for TSControlPanel
1 | william | 36 | using System; |
2 | using System.Collections.Generic; | ||
3 | using System.Text; | ||
4 | using log4net.Config; | ||
5 | using log4net; | ||
6 | using System.IO; | ||
7 | |||
8 | namespace AnywhereTS | ||
9 | { | ||
10 | public static class Logging | ||
11 | { | ||
12 | static Logging() { Logging.Initialize(); } | ||
13 | private static void Initialize() { XmlConfigurator.Configure(new FileInfo("AnywhereTS.Logging.dll.config")); } | ||
14 | |||
15 | #region Log access | ||
16 | public static readonly ILog ATSAdminLog = LogManager.GetLogger("AnywhereTS.ATSAmdin"); | ||
17 | william | 48 | public static readonly ILog TSControlPanelLog = LogManager.GetLogger("AnywhereTS.TSControlPanel"); |
18 | william | 36 | #endregion |
19 | } | ||
20 | } |
ViewVC Help | |
Powered by ViewVC 1.1.22 |