Remove unused methods in Invidious::LogHandler

This commit is contained in:
syeopite 2024-07-28 16:44:30 -07:00
parent bad92093bf
commit e098c27a45
No known key found for this signature in database
GPG Key ID: A73C186DA3955A1A

View File

@ -34,24 +34,11 @@ class Invidious::LogHandler < Kemal::BaseLogHandler
context
end
def puts(message : String)
@io << message << '\n'
@io.flush
end
def write(message : String)
@io << message
@io.flush
end
def set_log_level(level : String)
@level = LogLevel.parse(level)
end
def set_log_level(level : LogLevel)
@level = level
end
{% for level in %w(trace debug info warn error fatal) %}
def {{level.id}}(message : String)
if LogLevel::{{level.id.capitalize}} >= @level