thekuwayama/tttls1.3

View on GitHub
lib/tttls1.3/logging.rb

Summary

Maintainability
A
0 mins
Test Coverage
# encoding: ascii-8bit
# frozen_string_literal: true

module TTTLS13
  module Logging
    def logger
      Logging.logger
    end

    def self.logger
      @logger ||= Logger.new(STDERR, Logger::WARN)
    end
  end
end