Method: AppAbstract#log

Defined in:
lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb,
lib/cloudmunch_Ruby_sdk_v3/AppAbstract.rb,
lib/cloudmunch_Ruby_sdk_v2/PluginLoaderAbstract.rb,
lib/cloudmunch_Ruby_sdk_v3/PluginLoaderAbstract.rb,
lib/cloudmunch_Ruby_sdk_v2/PluginReporterAbstract.rb,
lib/cloudmunch_Ruby_sdk_v3/PluginReporterAbstract.rb

#log(level, logString) ⇒ Object



25
26
27
28
29
30
# File 'lib/cloudmunch_Ruby_sdk_v2/AppAbstract.rb', line 25

def log(level,logString)
    if @logger.nil?
        logInit("DEBUG")
    end     
    Util.logIt(@logger, @log_level, level.to_s.downcase, logString)
end