Problems With Logging-1.2.2

Was having problems with logging-1.2.2,

In utils.rb, this section of code was having issues.

rescue LoadError, NoMethodError
retry if $use_rubygems and require('rubygems')
if $whiny_require
name ||= string
$stderr.puts "Required library #{string.inspect} could not be loaded."
$stderr.puts "Try:\tgem install #{name}"
end
raise
end

Solution:

1. Set the global variables $use_rubygems & $whiny_require in environment.rb to false and true respectively.
2. Comment out the retry line.