Skip to content
This repository has been archived by the owner on Apr 15, 2024. It is now read-only.

Commit

Permalink
fix: Log logs with levels over warning to error output stream
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Sep 20, 2023
1 parent 6942b22 commit 075f6ad
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ object Logger {
if (loggerName?.startsWith("app.revanced") != true) return@handler

log.toByteArray().let {
if (level.intValue() > Level.INFO.intValue())
if (level.intValue() > Level.WARNING.intValue())
System.err.write(it)
else
System.out.write(it)
Expand Down

0 comments on commit 075f6ad

Please sign in to comment.