Skip to content

Commit

Permalink
fix default prod log level
Browse files Browse the repository at this point in the history
thought this was done in tobymao#10350 but apparently was missed; there are no
`LOGGER.info` calls but some `LOGGER.error` output may have ended up in the
server's stdout
  • Loading branch information
michaeljb committed Mar 1, 2024
1 parent 602a4d4 commit 5fb1112
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/engine/logger.rb
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def self.set_level(level, production = false)
if level
level.to_i
elsif production
::Logger::INFO
::Logger::FATAL
else
::Logger::DEBUG
end
Expand Down

0 comments on commit 5fb1112

Please sign in to comment.