mguymon/lock_jar

View on GitHub
lib/lock_jar/logging.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'naether/java'

module LockJar
  #
  class Logging
    def self.verbose!
      Naether::Java.exec_static_method(
        'com.tobedevoured.naether.LogUtil',
        'setDefaultLogLevel',
        ['info']
      )
    end
  end
end