Null logging should not print anything to STDOUT (#381)

This commit is contained in:
Benoist 2017-07-30 14:08:02 +02:00 committed by Serdar Dogruyol
parent cd5fab8c2f
commit fc4c97aafd
1 changed files with 0 additions and 1 deletions

View File

@ -2,7 +2,6 @@ module Kemal
# This is here to represent the logger corresponding to Null Object Pattern.
class NullLogHandler < Kemal::BaseLogHandler
def call(context)
puts "This is null"
call_next(context)
end