summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2017-05-02 18:37:52 +0100
committersr55 <[email protected]>2017-05-02 18:37:52 +0100
commite1bcb7af6947aed329924a82e58a45c143feedbf (patch)
treea7495b096666e6f3a0db35dcc75c6fbc5e4e9638 /win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs
parentb652292b6ae12e95f6ef24804a4cf8b51f32c47a (diff)
WinGui: Improved logging around SCANDONE and some additional defensive programming to try track down this never ending scan.
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs
index ef869570a..abaf18e64 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs
@@ -103,7 +103,7 @@ namespace HandBrake.ApplicationServices.Services.Logging
return;
}
- if (level >= this.currentLogLevel)
+ if (level > this.currentLogLevel)
{
return;
}