Class Exception
In: lib/uttk/logger/to_uttk_log.rb
Parent: Object

Methods

Public Instance methods

[Source]

# File lib/uttk/logger/to_uttk_log.rb, line 88
        def to_uttk_log ( log )
          if log.severity_level <= Severity::DEBUG
            long_pp.to_uttk_log(log)
          elsif log.severity_level <= Severity::VERBOSE_INFO
            short_pp.to_uttk_log(log)
          else
            tiny_pp.to_uttk_log(log)
          end
        end

[Validate]