Class: Log
- Inherits:
-
Object
- Object
- Log
- Defined in:
- lib/debug/log.rb
Constant Summary collapse
- @@logfunc =
method(:defLogger)
Class Method Summary collapse
Instance Method Summary collapse
- #dispose ⇒ Object
-
#initialize ⇒ Log
constructor
A new instance of Log.
Constructor Details
#initialize ⇒ Log
Returns a new instance of Log.
10 11 |
# File 'lib/debug/log.rb', line 10 def initialize end |
Class Method Details
.logfile ⇒ Object
15 16 17 |
# File 'lib/debug/log.rb', line 15 def self.logfile @@logfile end |
.logfile=(fp) ⇒ Object
18 19 20 |
# File 'lib/debug/log.rb', line 18 def self.logfile=(fp) @@logfile = fp end |
.logfunc ⇒ Object
22 23 24 |
# File 'lib/debug/log.rb', line 22 def self.logfunc @@logfunc end |
.logfunc=(lf) ⇒ Object
25 26 27 |
# File 'lib/debug/log.rb', line 25 def self.logfunc=(lf) @@logfunc = lf end |
Instance Method Details
#dispose ⇒ Object
12 13 |
# File 'lib/debug/log.rb', line 12 def dispose end |