Skip to content

Commit

Permalink
refactor: replace printStackTrace with logger.error in ImageExecutor
Browse files Browse the repository at this point in the history
  • Loading branch information
ShiinaKin committed Dec 19, 2024
1 parent 1f734e7 commit d80a85d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ object ImageExecutor {
try {
task.execute()
} catch (e: Exception) {
e.printStackTrace()
logger.error(e) { "image task failed" }
}
}
}
Expand Down

0 comments on commit d80a85d

Please sign in to comment.