diff options
| author | mo khan <mo@mokhan.ca> | 2021-12-21 17:51:17 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2021-12-21 17:51:17 -0700 |
| commit | bd042abf78e262e6841bcc4cc6236872198a50e1 (patch) | |
| tree | 19865ffaf22ffb4fed05777391c82ac4a5464ce7 /lib/dependabot.rb | |
| parent | f12b7a8cec5db6b00b22159df397158466f2b764 (diff) | |
fix: record error and move on to the next dependencyv0.1.9
Diffstat (limited to 'lib/dependabot.rb')
| -rw-r--r-- | lib/dependabot.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/dependabot.rb b/lib/dependabot.rb index 528a997..ac392af 100644 --- a/lib/dependabot.rb +++ b/lib/dependabot.rb @@ -17,7 +17,7 @@ module Dependabot class Error < StandardError; end def self.logger - @logger ||= Logger.new($stderr, level: ENV.fetch("LOG_LEVEL", Logger::WARN)).tap do |x| + @logger ||= Logger.new($stderr, level: ENV.fetch("LOG_LEVEL", Logger::INFO)).tap do |x| x.formatter = proc do |_severity, _datetime, _progname, message| "[v#{VERSION}] #{message}\n" end |
