mirror of
https://gitea.invidious.io/iv-org/shard-kemal.git
synced 2024-08-15 00:53:36 +00:00
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
|
name: kemal
|
||||||
version: 0.15.0
|
version: 0.15.1
|
||||||
|
|
||||||
dependencies:
|
dependencies:
|
||||||
radix:
|
radix:
|
||||||
|
|
|
@ -2,6 +2,7 @@ module Kemal
|
||||||
# This is here to represent the logger corresponding to Null Object Pattern.
|
# This is here to represent the logger corresponding to Null Object Pattern.
|
||||||
class NullLogHandler < Kemal::BaseLogHandler
|
class NullLogHandler < Kemal::BaseLogHandler
|
||||||
def call(context)
|
def call(context)
|
||||||
|
call_next(context)
|
||||||
end
|
end
|
||||||
|
|
||||||
def write(message)
|
def write(message)
|
||||||
|
|
Loading…
Reference in a new issue