Class: HzTrace

Inherits:
Object
  • Object
show all
Defined in:
lib/haruzira_sdk/HzTrace.rb

Constant Summary collapse

@@traceOutputFlg =
false

Class Method Summary collapse

Class Method Details

.setTraceOutPut(flg) ⇒ Object



7
8
9
# File 'lib/haruzira_sdk/HzTrace.rb', line 7

def self.setTraceOutPut(flg)
    @@traceOutputFlg = flg
end

.traceCommMessage(msg) ⇒ Object



11
12
13
14
15
# File 'lib/haruzira_sdk/HzTrace.rb', line 11

def self.traceCommMessage(msg)
    if(@@traceOutputFlg)
        puts msg
    end
end