Module: Quartz::Scheduler::ClassMethods
- Defined in:
- lib/quartz/scheduler.rb
Instance Method Summary collapse
- #error(msg) ⇒ Object
- #info(msg) ⇒ Object
- #log ⇒ Object
- #schedule(name, options, &block) ⇒ Object
- #warn(msg) ⇒ Object
Instance Method Details
#error(msg) ⇒ Object
29 30 31 |
# File 'lib/quartz/scheduler.rb', line 29 def error(msg) log.log(org.apache.log4j.Level::ERROR,msg) end |
#info(msg) ⇒ Object
26 27 28 |
# File 'lib/quartz/scheduler.rb', line 26 def info(msg) log.log(org.apache.log4j.Level::INFO,msg) end |
#log ⇒ Object
23 24 25 |
# File 'lib/quartz/scheduler.rb', line 23 def log org.apache.log4j.Logger.get_logger(self.name) end |
#schedule(name, options, &block) ⇒ Object
20 21 22 |
# File 'lib/quartz/scheduler.rb', line 20 def schedule(name,,&block) instance.schedule(name,,block) end |
#warn(msg) ⇒ Object
32 33 34 |
# File 'lib/quartz/scheduler.rb', line 32 def warn(msg) log.log(org.apache.log4j.Level::WARN,msg) end |