Module: Log
- Included in:
- Localization
- Defined in:
- lib/RubyExt/Log.rb,
lib/RubyExt/Log.rb
Defined Under Namespace
Modules: ClassMethods
Class Attribute Summary collapse
-
.loggers ⇒ Object
readonly
Returns the value of attribute loggers.
Class Method Summary collapse
Instance Method Summary collapse
Class Attribute Details
.loggers ⇒ Object (readonly)
Returns the value of attribute loggers.
27 28 29 |
# File 'lib/RubyExt/Log.rb', line 27 def loggers @loggers end |
Class Method Details
.error(*s) ⇒ Object
33 34 35 |
# File 'lib/RubyExt/Log.rb', line 33 def error *s log.error *s end |
.info(*s) ⇒ Object
29 30 31 |
# File 'lib/RubyExt/Log.rb', line 29 def info *s log.info *s end |
.warn(*s) ⇒ Object
37 38 39 |
# File 'lib/RubyExt/Log.rb', line 37 def warn *s log.warn *s end |