Don't forget to call_next on NullLogHandler
This commit is contained in:
parent
64d3271fb2
commit
7c8915bfa4
2 changed files with 2 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
name: kemal
|
||||
version: 0.15.0
|
||||
version: 0.15.1
|
||||
|
||||
dependencies:
|
||||
radix:
|
||||
|
|
|
@ -2,6 +2,7 @@ module Kemal
|
|||
# This is here to represent the logger corresponding to Null Object Pattern.
|
||||
class NullLogHandler < Kemal::BaseLogHandler
|
||||
def call(context)
|
||||
call_next(context)
|
||||
end
|
||||
|
||||
def write(message)
|
||||
|
|
Loading…
Reference in a new issue