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

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

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