我的应用程序给了我这个错误:
/usr/local/www/sl-exchange/lib/exchange.rb:25:in 'initialize': uninitialized constant Exchange::Logger (NameError).
什么宝石或文件Logger
来自?
class Exchange
attr_accessor :logger, :options
QUEUE_INTERVAL = 15
MONTHLY_PROCESS_DAY = 1
MINUTE = 60
HOUR_IN_SECONDS = 60 * 60
def initialize()
# Setup Logging
self.logger = Logger.new(STDOUT) #<-- this line is giving me issues
...