module JsonLint

Constants

VERSION

Public Class Methods

logger() click to toggle source
# File lib/jsonlint.rb, line 7
def self.logger
  @logger ||= Logger.new(STDOUT).tap do |l|
    l.level = Logger::INFO
  end
end