Skip to content

Commit

Permalink
OKEGui/OKEGui/JobProcessor/Video/x265Encoder.cs: don't log same messa…
Browse files Browse the repository at this point in the history
…ge multiple times

Signed-off-by: akarin <[email protected]>
  • Loading branch information
AkarinVS committed Dec 27, 2021
1 parent ca7d298 commit 3da7a52
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion OKEGui/OKEGui/JobProcessor/Video/x265Encoder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ public override void ProcessLine(string line, StreamType stream)
}
else
{
Logger.Debug(line);
if (Initializer.Config.logLevel != "TRACE")
{
Logger.Debug(line);
}
return;
}

Expand Down

0 comments on commit 3da7a52

Please sign in to comment.