Exemple #1
0
        public static void InitLog(string logPath)
        {
            LogPath = logPath;
            ILog log = new ObserverLogToFile(LogPath + @"\MarketService.log");

            SingletonLogger.Instance.Attach(log);
        }
Exemple #2
0
 public static void InitLog(string logPath)
 {
     LogPath = logPath;
     ILog log = new ObserverLogToFile(LogPath + @"\MarketService.log");
     SingletonLogger.Instance.Attach(log);
 }
Exemple #3
0
        public static void InitLog()
        {
            ILog log = new ObserverLogToFile(@"DoFactory.log");

            SingletonLogger.Instance.Attach(log);
        }
Exemple #4
0
 public static void InitLog()
 {
     ILog log = new ObserverLogToFile(@"DoFactory.log");
     SingletonLogger.Instance.Attach(log);
 }