Module: Alchemy::Logger
Class Method Summary collapse
-
.warn(message, caller_string) ⇒ Object
Logs a debug message to the Rails standard logger and adds some nicer formatting.
Instance Method Summary collapse
Class Method Details
.warn(message, caller_string) ⇒ Object
Logs a debug message to the Rails standard logger and adds some nicer formatting
5 6 7 8 |
# File 'lib/alchemy/logger.rb', line 5 def self.warn(, caller_string) Rails.logger.debug %(\n++++ WARNING: #{}\nCalled from: #{caller_string}\n) return nil end |