2

I'm using Logger through config and this line:

configatron.log.level = Logger::Warn

gives me the error:

`<top (required)>': uninitialized constant Logger::Warn (NameError)

Even if I require 'logger' at the top.

what gives?

< Ruby N00B >

dlite922
  • 1,924
  • 3
  • 24
  • 60

1 Answers1

5

Capitalization matters. It should be Logger::WARN.

Darshan Rivka Whittle
  • 32,989
  • 7
  • 91
  • 109