diff options
author | sr55 <[email protected]> | 2016-02-07 21:32:16 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2016-02-07 21:32:16 +0000 |
commit | 4827c1fefdef10053318477c2eed6386b374a779 (patch) | |
tree | 6dd65cdd450e894cff6b30ff1647ef8d639e1a25 /win/CS/HandBrake.ApplicationServices/Services | |
parent | 8ce01f3f60df3e2065e44bdf2629f81b7b10b2b6 (diff) |
WinGui: Fixes to the refactored Audio Defaults View. Settings were not getting applied correctly.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Logging/LogHelper.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogHelper.cs b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogHelper.cs index e088acd1e..44ccc757c 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogHelper.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogHelper.cs @@ -33,7 +33,7 @@ namespace HandBrake.ApplicationServices.Services.Logging {
if (message.LogLevel <= currentLogLevel)
{
- Debug.WriteLine(message.Content);
+ //Debug.WriteLine(message.Content);
}
// TODO cache logging.
|