kemal/src/kemal/null_log_handler.cr

13 lines
262 B
Crystal

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
def write(message)
end
end
end