Class: Log

Inherits:
Object
  • Object
show all
Defined in:
lib/debug/log.rb

Constant Summary collapse

@@logfunc =
method(:defLogger)

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeLog

Returns a new instance of Log.



10
11
# File 'lib/debug/log.rb', line 10

def initialize
end

Class Method Details

.logfileObject



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

.logfuncObject



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

#disposeObject



12
13
# File 'lib/debug/log.rb', line 12

def dispose
end