Use log instead
This commit is contained in:
parent
66e04ecaec
commit
1afb4cbfa8
2 changed files with 3 additions and 3 deletions
|
@ -30,7 +30,7 @@ module Kemal
|
|||
# Test environment doesn't need to have signal trap, built-in images, and logging.
|
||||
unless config.env == "test"
|
||||
Signal::INT.trap {
|
||||
config.logger.write "Kemal is going to take a rest!\n"
|
||||
log "Kemal is going to take a rest!\n"
|
||||
config.server.close
|
||||
exit
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ module Kemal
|
|||
end
|
||||
end
|
||||
|
||||
config.logger.write "[#{config.env}] Kemal is ready to lead at #{config.scheme}://#{config.host_binding}:#{config.port}\n"
|
||||
log "[#{config.env}] Kemal is ready to lead at #{config.scheme}://#{config.host_binding}:#{config.port}\n"
|
||||
config.server.listen
|
||||
end
|
||||
end
|
||||
|
|
|
@ -11,7 +11,7 @@ module Kemal
|
|||
rescue ex : Kemal::Exceptions::CustomException
|
||||
call_exception_with_status_code(context, ex, context.response.status_code)
|
||||
rescue ex : Exception
|
||||
Kemal.config.logger.write("Exception: #{ex.inspect_with_backtrace}\n")
|
||||
log("Exception: #{ex.inspect_with_backtrace}\n")
|
||||
return call_exception_with_status_code(context, ex, 500) if Kemal.config.error_handlers.has_key?(500)
|
||||
verbosity = Kemal.config.env == "production" ? false : true
|
||||
return render_500(context, ex.inspect_with_backtrace, verbosity)
|
||||
|
|
Loading…
Reference in a new issue