module Logify::ClassMethods

Class methods that get extended into any including object.

Public Instance Methods

log() click to toggle source

Write a message to the logger for this class.

@return [Logger]

# File lib/logify.rb, line 130
def log
  @log ||= Logify.logger_for(name)
end