This commit is contained in:
Serdar Dogruyol 2017-08-24 18:52:10 +03:00
parent cfedc7c538
commit efd97b75f9
2 changed files with 2 additions and 1 deletions

View File

@ -77,6 +77,7 @@ end
Spec.before_each do
config = Kemal.config
config.env = "development"
config.logging = false
end
Spec.after_each do

View File

@ -1,6 +1,6 @@
module Kemal
# All loggers must inherit from `Kemal::BaseLogHandler`.
abstract class Kemal::BaseLogHandler
abstract class BaseLogHandler
include HTTP::Handler
abstract def call(context)