mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
Remove colorize from common exception handler
This commit is contained in:
parent
456724f8e4
commit
e077d17943
1 changed files with 2 additions and 2 deletions
|
@ -6,11 +6,11 @@ class Kemal::CommonExceptionHandler < HTTP::Handler
|
|||
call_next context
|
||||
rescue ex : Kemal::Exceptions::RouteNotFound
|
||||
context.response.content_type = "text/html"
|
||||
Kemal.config.logger.write("Exception: #{ex.inspect_with_backtrace.colorize(:red)}\n")
|
||||
Kemal.config.logger.write("Exception: #{ex.inspect_with_backtrace}\n")
|
||||
return render_404(context)
|
||||
rescue ex
|
||||
context.response.content_type = "text/html"
|
||||
Kemal.config.logger.write("Exception: #{ex.inspect_with_backtrace.colorize(:red)}\n")
|
||||
Kemal.config.logger.write("Exception: #{ex.inspect_with_backtrace}\n")
|
||||
verbosity = Kemal.config.env == "production" ? false : true
|
||||
return render_500(context, ex.inspect_with_backtrace, verbosity)
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue