class SemanticLogger::Subscriber

def should_log?(log)

Whether this log entry meets the criteria to be logged by this appender.
def should_log?(log)
  super && (log.metric_only? ? metrics? : true)
end