-
-
Notifications
You must be signed in to change notification settings - Fork 532
Expand file tree
/
Copy pathstd_lib_logger.rb
More file actions
59 lines (47 loc) · 1.59 KB
/
std_lib_logger.rb
File metadata and controls
59 lines (47 loc) · 1.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# frozen_string_literal: true
module Sentry
# Ruby Logger support Add commentMore actions
# intercepts any logger instance and send the log to Sentry too.
module StdLibLogger
SEVERITY_MAP = {
0 => :debug,
1 => :info,
2 => :warn,
3 => :error,
4 => :fatal
}.freeze
ORIGIN = "auto.log.ruby.std_logger"
def add(severity, message = nil, progname = nil, &block)
result = super
return unless Sentry.initialized? && Sentry.get_current_hub
# Only process logs that meet or exceed the logger's level
return result if severity < level
# exclude sentry SDK logs -- to prevent recursive log action,
# do not process internal logs again
if message.nil? && progname != Sentry::Logger::PROGNAME
# handle different nature of Ruby Logger class:
# inspo from Sentry::Breadcrumb::SentryLogger
if block_given?
message = yield
else
message = progname
end
message = message.to_s.strip
if !message.nil? && message != Sentry::Logger::PROGNAME && method = SEVERITY_MAP[severity]
if (filter = Sentry.configuration.std_lib_logger_filter) && !filter.call(self, message, method)
return result
end
Sentry.logger.send(method, message, origin: ORIGIN)
end
end
result
end
end
end
Sentry.register_patch(:logger) do |config|
if config.enable_logs
::Logger.prepend(Sentry::StdLibLogger)
else
config.sdk_logger.warn(":logger patch enabled but `enable_logs` is turned off - skipping applying patch")
end
end