15 |
{ |
{ |
16 |
string log_path = Application.StartupPath; |
string log_path = Application.StartupPath; |
17 |
string log_filename = string.Format("{0}.log", typeof(xmltv_logger).Assembly.GetName().Name); |
string log_filename = string.Format("{0}.log", typeof(xmltv_logger).Assembly.GetName().Name); |
18 |
gLog.CreateLog(string.Format(@"{0}\{1}", log_path, log_filename), false, LogLevel.kLogLevel_All); |
gLog.CreateLog(string.Format(@"{0}\{1}", log_path, log_filename), false, LogLevel.kLogLevel_All_NoProgress); |
19 |
} |
} |
20 |
catch (Exception) |
catch (Exception) |
21 |
{ |
{ |
32 |
public static ilogger Info { get { return gLog.Info; } } |
public static ilogger Info { get { return gLog.Info; } } |
33 |
public static ilogger Warn { get { return gLog.Warn; } } |
public static ilogger Warn { get { return gLog.Warn; } } |
34 |
public static ilog Verbose { get { return gLog.Verbose; } } |
public static ilog Verbose { get { return gLog.Verbose; } } |
35 |
|
public static ilogger Progress { get { return gLog.Progress; } } |
36 |
|
public static void ReportProgress(object sender, ReportProgressEventArgs args) { gLog.ReportProgress(sender, args); } |
37 |
} |
} |
38 |
} |
} |