class Pgcp

Public Class Methods

log_file=(path) click to toggle source
# File lib/pgcp.rb, line 69
def self.log_file=(path)
  @@logger = Logger.new(path)
end
logger() click to toggle source
# File lib/pgcp.rb, line 61
def self.logger
  if not @@logger
    @@logger = Logger.new STDOUT
  end

  @@logger
end