diff options
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/Logging/LogService.cs | 2 |
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; } |