kemal/src/kemal/null_log_handler.cr

12 lines
236 B
Crystal
Raw Normal View History

2016-07-17 11:43:13 +00:00
module Kemal
# This is here to represent the logger corresponding to Null Object Pattern.
class NullLogHandler < Kemal::BaseLogHandler
2016-07-28 18:12:55 +00:00
def call(context)
call_next(context)
2016-07-28 18:12:55 +00:00
end
def write(message)
end
2016-07-17 11:43:13 +00:00
end
2016-02-12 12:11:21 +00:00
end