diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs | 6 | ||||
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogMessageType.cs | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs index cd0d5a483..b0292ca31 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs @@ -120,7 +120,7 @@ namespace HandBrake.ApplicationServices.Services.Logging this.messageIndex = this.messageIndex + 1; msg = new LogMessage( "Log Service Pausing. Too Many Log messages. This may indicate a problem with your encode.", - LogMessageType.Vital, + LogMessageType.Application, LogLevel.Error, this.messageIndex); this.logMessages.Add(msg); @@ -204,7 +204,7 @@ namespace HandBrake.ApplicationServices.Services.Logging } catch (Exception exc) { - this.LogMessage("Failed to Initialise Disk Logging. " + Environment.NewLine + exc, LogMessageType.Vital, LogLevel.Error); + this.LogMessage("Failed to Initialise Disk Logging. " + Environment.NewLine + exc, LogMessageType.Application, LogLevel.Error); if (this.fileWriter != null) { @@ -227,7 +227,7 @@ namespace HandBrake.ApplicationServices.Services.Logging public void SetupLogHeader(string header) { this.logHeader = header; - this.LogMessage(header, LogMessageType.Vital, LogLevel.Info); + this.LogMessage(header, LogMessageType.Application, LogLevel.Info); } /// <summary> diff --git a/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogMessageType.cs b/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogMessageType.cs index 47302a872..dfa467b4a 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogMessageType.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Logging/Model/LogMessageType.cs @@ -17,6 +17,6 @@ namespace HandBrake.ApplicationServices.Services.Logging.Model ScanOrEncode,
API,
Progress,
- Vital,
+ Application,
}
}
|