Class | Logger::Application |
In: |
lib/logger.rb
|
Parent: | Object |
Application — Add logging support to your application.
class FooApp < Application def initialize(foo_app, application_specific, arguments) super('FooApp') # Name of the application. end def run ... log(WARN, 'warning', 'my_method1') ... @log.error('my_method2') { 'Error!' } ... end end status = FooApp.new(....).start
appname | [R] | |
logdev | [R] |
Application.new(appname = '')
appname: | Name of the application. |
Create an instance. Log device is STDERR by default. This can be changed with set_log.
ruby-doc.org is a service of James Britt and Neurogami, a Ruby application development company in Phoenix, AZ.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.