Conversation
020f1dc to
7df9a5a
Compare
7df9a5a to
4f183a2
Compare
Codecov Report
@@ Coverage Diff @@
## master #1385 +/- ##
==========================================
+ Coverage 98.10% 98.60% +0.50%
==========================================
Files 208 114 -94
Lines 9264 5460 -3804
==========================================
- Hits 9088 5384 -3704
+ Misses 176 76 -100
Continue to review full report at Codecov.
|
|
@st0012 since this was introduced, Sentry has gotten a bit noisier, particularly at app startup: Neither of these pieces of information are really helpful/informative, even when debugging, and I'm wondering if some kind of configuration option could be made available to turn off these kinds of startup messages. |
|
Also noticed a lot more noise on the INFO front @agrobbin. Is there a way to easily disable this or change the logging level for only Sentry (not my application logger's level)? So that I don't get INFO logs, only WARN+ logs? @st0012 |
|
@agrobbin @nvolker Sorry for the long delay. I just spotted this during PR searching. Example: config.logger =Logger.new(nil)
# or
config.logger = Logger.new($stdout)
config.logger.level = Logger::WARN |
This PR centralizes logging logic inside a module. This will help introduce more advanced logging helpers with the new
debugoption in #1297.