class Epilog::Logger
Public Class Methods
new(*args, **options)
click to toggle source
Calls superclass method
# File lib/epilog/logger.rb, line 7 def initialize(*args, **options) super self.formatter = Formatter.new end
Public Instance Methods
datetime_format()
click to toggle source
# File lib/epilog/logger.rb, line 12 def datetime_format return unless formatter formatter.datetime_format end
datetime_format=(format)
click to toggle source
# File lib/epilog/logger.rb, line 18 def datetime_format=(format) return unless formatter formatter.datetime_format = format end
silencer()
click to toggle source
# File lib/epilog/rails/epilog_ext.rb, line 7 def silencer false end