class EasySync::SyncLogger

Attributes

log[R]

Public Class Methods

new(path) click to toggle source
# File lib/easy_sync/sync_logger.rb, line 9
def initialize(path)
  @log = Logger.new(path)
end

Public Instance Methods

info(message) click to toggle source
# File lib/easy_sync/sync_logger.rb, line 13
def info(message)
  puts message
  log.info message
end