Skip to content

Commit

Permalink
feat: Log stacktrace in new line
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Sep 15, 2023
1 parent 05878a6 commit c67e3c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/app/revanced/cli/command/PatchCommand.kt
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ internal object PatchCommand : Runnable {
patchResult.exception?.let {
StringWriter().use { writer ->
it.printStackTrace(PrintWriter(writer))
logger.severe("${patchResult.patch.name} failed: $writer")
logger.severe("${patchResult.patch.name} failed:\n$writer")
}
} ?: logger.info("${patchResult.patch.name} succeeded")
}
Expand Down

0 comments on commit c67e3c7

Please sign in to comment.