rails_semantic_logger 4.13.0 → 4.14.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rails_semantic_logger/action_controller/log_subscriber.rb +5 -3
- data/lib/rails_semantic_logger/action_mailer/log_subscriber.rb +10 -12
- data/lib/rails_semantic_logger/action_view/log_subscriber.rb +15 -12
- data/lib/rails_semantic_logger/active_job/log_subscriber.rb +6 -6
- data/lib/rails_semantic_logger/active_record/log_subscriber.rb +1 -3
- data/lib/rails_semantic_logger/engine.rb +6 -4
- data/lib/rails_semantic_logger/extensions/active_support/log_subscriber.rb +9 -7
- data/lib/rails_semantic_logger/extensions/active_support/logger.rb +3 -3
- data/lib/rails_semantic_logger/extensions/rackup/server.rb +12 -0
- data/lib/rails_semantic_logger/extensions/rails/server.rb +1 -1
- data/lib/rails_semantic_logger/rack/logger.rb +1 -1
- data/lib/rails_semantic_logger/version.rb +1 -1
- data/lib/rails_semantic_logger.rb +15 -3
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b41a1fee07d074d18bcaed7538592f123ecbbbe0f232b52cbca96133654ac256
|
4
|
+
data.tar.gz: df2d6ef10cb8aa051f56a3b916064d1c51afcc3c9ef6f834c2c26be5a3dfc9b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70dec27d9976ae2edfc028bdfd03f51b3eade4cf1562681096ba3a882e2f0aacc9fba893cacd5ac7604f3810b2d6e3b880d2411d78a4372ad5b53ab579e41878
|
7
|
+
data.tar.gz: 635c69136356a8c3ad62a81e0b2db7e397031878619c381fe52240405c2c0b720b9f4900fc2d2ae886d8c23943f8ebd1649444b35357c6178016bb99f036e7dd
|
@@ -14,10 +14,10 @@ module RailsSemanticLogger
|
|
14
14
|
|
15
15
|
# Unused, but needed for Devise 401 status code monkey patch to still work.
|
16
16
|
::ActionController::Base.log_process_action(payload)
|
17
|
-
|
17
|
+
|
18
18
|
params = payload[:params]
|
19
19
|
|
20
|
-
if params.
|
20
|
+
if params.is_a?(Hash) || params.is_a?(::ActionController::Parameters)
|
21
21
|
# According to PR https://github.com/reidmorrison/rails_semantic_logger/pull/37/files
|
22
22
|
# params is not always a Hash.
|
23
23
|
payload[:params] = params.to_unsafe_h unless params.is_a?(Hash)
|
@@ -79,7 +79,9 @@ module RailsSemanticLogger
|
|
79
79
|
end
|
80
80
|
|
81
81
|
def send_data(event)
|
82
|
-
controller_logger(event).info(message:
|
82
|
+
controller_logger(event).info(message: "Sent data",
|
83
|
+
payload: {file_name: event.payload[:filename]},
|
84
|
+
duration: event.duration)
|
83
85
|
end
|
84
86
|
|
85
87
|
def unpermitted_parameters(event)
|
@@ -9,22 +9,22 @@ module RailsSemanticLogger
|
|
9
9
|
message_id = event.payload[:message_id]
|
10
10
|
duration = event.duration.round(1)
|
11
11
|
if ex
|
12
|
-
log_with_formatter event: event, log_duration: true, level: :error do |
|
12
|
+
log_with_formatter event: event, log_duration: true, level: :error do |_fmt|
|
13
13
|
{
|
14
|
-
message:
|
14
|
+
message: "Error delivering mail #{message_id} (#{duration}ms)",
|
15
15
|
exception: ex
|
16
16
|
}
|
17
17
|
end
|
18
18
|
else
|
19
|
-
message =
|
19
|
+
message =
|
20
20
|
if event.payload[:perform_deliveries]
|
21
21
|
"Delivered mail #{message_id} (#{duration}ms)"
|
22
22
|
else
|
23
23
|
"Skipped delivery of mail #{message_id} as `perform_deliveries` is false"
|
24
24
|
end
|
25
|
-
|
26
|
-
log_with_formatter event: event, log_duration: true do |
|
27
|
-
{
|
25
|
+
|
26
|
+
log_with_formatter event: event, log_duration: true do |_fmt|
|
27
|
+
{message: message}
|
28
28
|
end
|
29
29
|
end
|
30
30
|
end
|
@@ -34,8 +34,8 @@ module RailsSemanticLogger
|
|
34
34
|
mailer = event.payload[:mailer]
|
35
35
|
action = event.payload[:action]
|
36
36
|
duration = event.duration.round(1)
|
37
|
-
log_with_formatter event: event do |
|
38
|
-
{
|
37
|
+
log_with_formatter event: event do |_fmt|
|
38
|
+
{message: "#{mailer}##{action}: processed outbound mail in #{duration}ms"}
|
39
39
|
end
|
40
40
|
end
|
41
41
|
|
@@ -74,8 +74,6 @@ module RailsSemanticLogger
|
|
74
74
|
event.payload[:date].to_time.utc
|
75
75
|
elsif event.payload[:date].is_a?(String)
|
76
76
|
Time.parse(date).utc
|
77
|
-
else
|
78
|
-
nil
|
79
77
|
end
|
80
78
|
end
|
81
79
|
|
@@ -94,8 +92,8 @@ module RailsSemanticLogger
|
|
94
92
|
def formatted_args
|
95
93
|
if defined?(mailer.constantize.log_arguments?) && !mailer.constantize.log_arguments?
|
96
94
|
""
|
97
|
-
|
98
|
-
JSON.pretty_generate(event.payload[:args].map { |arg| format(arg) })
|
95
|
+
elsif event.payload[:args].present?
|
96
|
+
JSON.pretty_generate(event.payload[:args].map { |arg| format(arg) })
|
99
97
|
end
|
100
98
|
end
|
101
99
|
|
@@ -19,7 +19,7 @@ module RailsSemanticLogger
|
|
19
19
|
def render_template(event)
|
20
20
|
return unless should_log?
|
21
21
|
|
22
|
-
payload
|
22
|
+
payload = {
|
23
23
|
template: from_rails_root(event.payload[:identifier])
|
24
24
|
}
|
25
25
|
payload[:within] = from_rails_root(event.payload[:layout]) if event.payload[:layout]
|
@@ -36,7 +36,7 @@ module RailsSemanticLogger
|
|
36
36
|
def render_partial(event)
|
37
37
|
return unless should_log?
|
38
38
|
|
39
|
-
payload
|
39
|
+
payload = {
|
40
40
|
partial: from_rails_root(event.payload[:identifier])
|
41
41
|
}
|
42
42
|
payload[:within] = from_rails_root(event.payload[:layout]) if event.payload[:layout]
|
@@ -56,7 +56,7 @@ module RailsSemanticLogger
|
|
56
56
|
|
57
57
|
identifier = event.payload[:identifier] || "templates"
|
58
58
|
|
59
|
-
payload
|
59
|
+
payload = {
|
60
60
|
template: from_rails_root(identifier),
|
61
61
|
count: event.payload[:count]
|
62
62
|
}
|
@@ -72,9 +72,9 @@ module RailsSemanticLogger
|
|
72
72
|
end
|
73
73
|
|
74
74
|
def start(name, id, payload)
|
75
|
-
if
|
75
|
+
if ["render_template.action_view", "render_layout.action_view"].include?(name) && should_log?
|
76
76
|
qualifier = " layout" if name == "render_layout.action_view"
|
77
|
-
payload = {
|
77
|
+
payload = {template: from_rails_root(payload[:identifier])}
|
78
78
|
payload[:within] = from_rails_root(payload[:layout]) if payload[:layout]
|
79
79
|
|
80
80
|
logger.send(self.class.rendered_log_level, message: "Rendering#{qualifier}", payload: payload)
|
@@ -84,18 +84,19 @@ module RailsSemanticLogger
|
|
84
84
|
end
|
85
85
|
|
86
86
|
if (Rails::VERSION::MAJOR == 7 && Rails::VERSION::MINOR >= 1) || Rails::VERSION::MAJOR > 7
|
87
|
-
class Start
|
88
|
-
def start(name,
|
87
|
+
class Start
|
88
|
+
def start(name, _id, payload)
|
89
89
|
return unless %w[render_template.action_view render_layout.action_view].include?(name)
|
90
90
|
|
91
91
|
qualifier = " layout" if name == "render_layout.action_view"
|
92
|
-
payload = {
|
92
|
+
payload = {template: from_rails_root(payload[:identifier])}
|
93
93
|
payload[:within] = from_rails_root(payload[:layout]) if payload[:layout]
|
94
94
|
|
95
95
|
logger.debug(message: "Rendering#{qualifier}", payload: payload)
|
96
96
|
end
|
97
97
|
|
98
|
-
def finish(name, id, payload)
|
98
|
+
def finish(name, id, payload)
|
99
|
+
end
|
99
100
|
|
100
101
|
private
|
101
102
|
|
@@ -105,7 +106,7 @@ module RailsSemanticLogger
|
|
105
106
|
string
|
106
107
|
end
|
107
108
|
|
108
|
-
def rails_root
|
109
|
+
def rails_root
|
109
110
|
@root ||= "#{Rails.root}/"
|
110
111
|
end
|
111
112
|
|
@@ -117,8 +118,10 @@ module RailsSemanticLogger
|
|
117
118
|
def self.attach_to(*)
|
118
119
|
ActiveSupport::Notifications.unsubscribe("render_template.action_view")
|
119
120
|
ActiveSupport::Notifications.unsubscribe("render_layout.action_view")
|
120
|
-
ActiveSupport::Notifications.subscribe("render_template.action_view",
|
121
|
-
|
121
|
+
ActiveSupport::Notifications.subscribe("render_template.action_view",
|
122
|
+
RailsSemanticLogger::ActionView::LogSubscriber::Start.new)
|
123
|
+
ActiveSupport::Notifications.subscribe("render_layout.action_view",
|
124
|
+
RailsSemanticLogger::ActionView::LogSubscriber::Start.new)
|
122
125
|
|
123
126
|
super
|
124
127
|
end
|
@@ -9,17 +9,17 @@ module RailsSemanticLogger
|
|
9
9
|
if ex
|
10
10
|
log_with_formatter level: :error, event: event do |fmt|
|
11
11
|
{
|
12
|
-
message:
|
12
|
+
message: "Failed enqueuing #{fmt.job_info} (#{ex.class} (#{ex.message})",
|
13
13
|
exception: ex
|
14
14
|
}
|
15
15
|
end
|
16
16
|
elsif event.payload[:aborted]
|
17
17
|
log_with_formatter level: :info, event: event do |fmt|
|
18
|
-
{
|
18
|
+
{message: "Failed enqueuing #{fmt.job_info}, a before_enqueue callback halted the enqueuing execution."}
|
19
19
|
end
|
20
20
|
else
|
21
21
|
log_with_formatter event: event do |fmt|
|
22
|
-
{
|
22
|
+
{message: "Enqueued #{fmt.job_info}"}
|
23
23
|
end
|
24
24
|
end
|
25
25
|
end
|
@@ -30,13 +30,13 @@ module RailsSemanticLogger
|
|
30
30
|
if ex
|
31
31
|
log_with_formatter level: :error, event: event do |fmt|
|
32
32
|
{
|
33
|
-
message:
|
33
|
+
message: "Failed enqueuing #{fmt.job_info} (#{ex.class} (#{ex.message})",
|
34
34
|
exception: ex
|
35
35
|
}
|
36
36
|
end
|
37
37
|
elsif event.payload[:aborted]
|
38
38
|
log_with_formatter level: :info, event: event do |fmt|
|
39
|
-
{
|
39
|
+
{message: "Failed enqueuing #{fmt.job_info}, a before_enqueue callback halted the enqueuing execution."}
|
40
40
|
end
|
41
41
|
else
|
42
42
|
log_with_formatter event: event do |fmt|
|
@@ -56,7 +56,7 @@ module RailsSemanticLogger
|
|
56
56
|
if ex
|
57
57
|
log_with_formatter event: event, log_duration: true, level: :error do |fmt|
|
58
58
|
{
|
59
|
-
message:
|
59
|
+
message: "Error performing #{fmt.job_info} in #{event.duration.round(2)}ms",
|
60
60
|
exception: ex
|
61
61
|
}
|
62
62
|
end
|
@@ -169,9 +169,7 @@ module RailsSemanticLogger
|
|
169
169
|
def render_bind_v6_1(attr, value)
|
170
170
|
case attr
|
171
171
|
when ActiveModel::Attribute
|
172
|
-
if attr.type.binary? && attr.value
|
173
|
-
value = "<#{attr.value_for_database.to_s.bytesize} bytes of binary data>"
|
174
|
-
end
|
172
|
+
value = "<#{attr.value_for_database.to_s.bytesize} bytes of binary data>" if attr.type.binary? && attr.value
|
175
173
|
when Array
|
176
174
|
attr = attr.first
|
177
175
|
else
|
@@ -77,7 +77,7 @@ module RailsSemanticLogger
|
|
77
77
|
logger = SemanticLogger[Rails]
|
78
78
|
logger.warn(
|
79
79
|
"Rails Error: Unable to access log file. Please ensure that #{path} exists and is chmod 0666. " \
|
80
|
-
|
80
|
+
"The log level has been raised to WARN and the output directed to STDERR until the problem is fixed.",
|
81
81
|
e
|
82
82
|
)
|
83
83
|
logger
|
@@ -111,14 +111,14 @@ module RailsSemanticLogger
|
|
111
111
|
if defined?(Sidekiq)
|
112
112
|
if Sidekiq.respond_to?(:logger=)
|
113
113
|
Sidekiq.logger = SemanticLogger[Sidekiq]
|
114
|
-
elsif Sidekiq::VERSION[0..1] ==
|
114
|
+
elsif Sidekiq::VERSION[0..1] == "7."
|
115
115
|
method = Sidekiq.server? ? :configure_server : :configure_client
|
116
116
|
Sidekiq.public_send(method) { |cfg| cfg.logger = SemanticLogger[Sidekiq] }
|
117
117
|
end
|
118
118
|
end
|
119
119
|
|
120
120
|
# Replace the Sidetiq logger
|
121
|
-
Sidetiq.logger
|
121
|
+
Sidetiq.logger = SemanticLogger[Sidetiq] if defined?(Sidetiq) && Sidetiq.respond_to?(:logger=)
|
122
122
|
|
123
123
|
# Replace the DelayedJob logger
|
124
124
|
if defined?(Delayed::Worker)
|
@@ -143,7 +143,9 @@ module RailsSemanticLogger
|
|
143
143
|
# Rails Patches
|
144
144
|
require("rails_semantic_logger/extensions/action_cable/tagged_logger_proxy") if defined?(::ActionCable)
|
145
145
|
require("rails_semantic_logger/extensions/action_controller/live") if defined?(::ActionController::Live)
|
146
|
-
|
146
|
+
if defined?(::ActionDispatch::DebugExceptions)
|
147
|
+
require("rails_semantic_logger/extensions/action_dispatch/debug_exceptions")
|
148
|
+
end
|
147
149
|
if defined?(::ActionView::StreamingTemplateRenderer::Body)
|
148
150
|
require("rails_semantic_logger/extensions/action_view/streaming_template_renderer")
|
149
151
|
end
|
@@ -1,11 +1,13 @@
|
|
1
|
-
|
1
|
+
if ActiveSupport::VERSION::STRING == "7.1.1"
|
2
|
+
require "active_support/log_subscriber"
|
2
3
|
|
3
|
-
module ActiveSupport
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
4
|
+
module ActiveSupport
|
5
|
+
class LogSubscriber
|
6
|
+
# @override Rails 7.1
|
7
|
+
def silenced?(event)
|
8
|
+
native_log_level = @event_levels.fetch(event, ::Logger::Severity::FATAL)
|
9
|
+
logger.nil? || SemanticLogger::Levels.index(logger.level) > SemanticLogger::Levels.index(native_log_level)
|
10
|
+
end
|
9
11
|
end
|
10
12
|
end
|
11
13
|
end
|
@@ -9,18 +9,18 @@ module ActiveSupport
|
|
9
9
|
# Prevent broadcasting since SemanticLogger already supports multiple loggers
|
10
10
|
if method_defined?(:broadcast)
|
11
11
|
undef :broadcast
|
12
|
-
def broadcast(
|
12
|
+
def broadcast(_logger)
|
13
13
|
Module.new
|
14
14
|
end
|
15
15
|
end
|
16
16
|
end
|
17
17
|
|
18
18
|
# Prevent Console from trying to merge loggers
|
19
|
-
def self.logger_outputs_to?(*
|
19
|
+
def self.logger_outputs_to?(*_args)
|
20
20
|
true
|
21
21
|
end
|
22
22
|
|
23
|
-
def self.new(*
|
23
|
+
def self.new(*_args, **_kwargs)
|
24
24
|
SemanticLogger[self]
|
25
25
|
end
|
26
26
|
end
|
@@ -37,7 +37,7 @@ module RailsSemanticLogger
|
|
37
37
|
def call_app(request, env)
|
38
38
|
instrumenter = ActiveSupport::Notifications.instrumenter
|
39
39
|
instrumenter_state = instrumenter.start "request.action_dispatch", request: request
|
40
|
-
instrumenter_finish =
|
40
|
+
instrumenter_finish = lambda {
|
41
41
|
instrumenter.finish_with_state(instrumenter_state, "request.action_dispatch", request: request)
|
42
42
|
}
|
43
43
|
|
@@ -6,21 +6,27 @@ module RailsSemanticLogger
|
|
6
6
|
module ActionController
|
7
7
|
autoload :LogSubscriber, "rails_semantic_logger/action_controller/log_subscriber"
|
8
8
|
end
|
9
|
+
|
9
10
|
module ActionMailer
|
10
11
|
autoload :LogSubscriber, "rails_semantic_logger/action_mailer/log_subscriber"
|
11
12
|
end
|
13
|
+
|
12
14
|
module ActionView
|
13
15
|
autoload :LogSubscriber, "rails_semantic_logger/action_view/log_subscriber"
|
14
16
|
end
|
17
|
+
|
15
18
|
module ActiveJob
|
16
19
|
autoload :LogSubscriber, "rails_semantic_logger/active_job/log_subscriber"
|
17
20
|
end
|
21
|
+
|
18
22
|
module ActiveRecord
|
19
23
|
autoload :LogSubscriber, "rails_semantic_logger/active_record/log_subscriber"
|
20
24
|
end
|
25
|
+
|
21
26
|
module Rack
|
22
27
|
autoload :Logger, "rails_semantic_logger/rack/logger"
|
23
28
|
end
|
29
|
+
|
24
30
|
module DelayedJob
|
25
31
|
autoload :Plugin, "rails_semantic_logger/delayed_job/plugin"
|
26
32
|
end
|
@@ -48,9 +54,11 @@ module RailsSemanticLogger
|
|
48
54
|
end
|
49
55
|
|
50
56
|
def self.subscriber_patterns(subscriber)
|
51
|
-
subscriber.patterns.respond_to?(:keys)
|
52
|
-
subscriber.patterns.keys
|
57
|
+
if subscriber.patterns.respond_to?(:keys)
|
58
|
+
subscriber.patterns.keys
|
59
|
+
else
|
53
60
|
subscriber.patterns
|
61
|
+
end
|
54
62
|
end
|
55
63
|
|
56
64
|
private_class_method :subscriber_patterns, :unattach
|
@@ -59,4 +67,8 @@ end
|
|
59
67
|
require("rails_semantic_logger/extensions/mongoid/config") if defined?(Mongoid)
|
60
68
|
require("rails_semantic_logger/extensions/active_support/logger") if defined?(ActiveSupport::Logger)
|
61
69
|
require("rails_semantic_logger/extensions/active_support/log_subscriber") if defined?(ActiveSupport::LogSubscriber)
|
62
|
-
|
70
|
+
if defined?(Rackup::Server)
|
71
|
+
require("rails_semantic_logger/extensions/rackup/server")
|
72
|
+
elsif defined?(Rack::Server)
|
73
|
+
require("rails_semantic_logger/extensions/rack/server")
|
74
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_semantic_logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.14.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Reid Morrison
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-11-
|
11
|
+
date: 2023-11-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -80,6 +80,7 @@ files:
|
|
80
80
|
- lib/rails_semantic_logger/extensions/active_support/tagged_logging.rb
|
81
81
|
- lib/rails_semantic_logger/extensions/mongoid/config.rb
|
82
82
|
- lib/rails_semantic_logger/extensions/rack/server.rb
|
83
|
+
- lib/rails_semantic_logger/extensions/rackup/server.rb
|
83
84
|
- lib/rails_semantic_logger/extensions/rails/server.rb
|
84
85
|
- lib/rails_semantic_logger/options.rb
|
85
86
|
- lib/rails_semantic_logger/rack/logger.rb
|
@@ -90,7 +91,7 @@ licenses:
|
|
90
91
|
metadata:
|
91
92
|
bug_tracker_uri: https://github.com/reidmorrison/rails_semantic_logger/issues
|
92
93
|
documentation_uri: https://logger.rocketjob.io
|
93
|
-
source_code_uri: https://github.com/reidmorrison/rails_semantic_logger/tree/v4.
|
94
|
+
source_code_uri: https://github.com/reidmorrison/rails_semantic_logger/tree/v4.14.0
|
94
95
|
rubygems_mfa_required: 'true'
|
95
96
|
post_install_message:
|
96
97
|
rdoc_options: []
|