contextual_logger 1.3.0.dg.pre.0 → 1.3.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/contextual_logger/redactor.rb +2 -0
- data/lib/contextual_logger/version.rb +1 -1
- data/lib/contextual_logger.rb +2 -34
- metadata +12 -12
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10a32750e2827bf7b9fcbf3af8cd20b68f617cba4350e060776e09f0e5b4503d
|
4
|
+
data.tar.gz: d890b6fc5f53da1a41eedaae373f5eea4448568b68a5ccec9238a768a8dfbf19
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 795abcaa64116174c14bfc18984c2440586e8d504589ecdddac8715abe70a330de5409480a052369b7957dde96bdae5ceb6073580f1fcc255ccc83f3bc4437ff
|
7
|
+
data.tar.gz: b35f4e70d0aad54203b69a4752bc4e687921b33ddac018f595cff2e98c1099173ed9f72079ffe76201d52226f885fd8aa9dc641e9cadf084c24ce9c0399a75a7
|
data/lib/contextual_logger.rb
CHANGED
@@ -19,9 +19,6 @@ module ContextualLogger
|
|
19
19
|
unknown: Logger::Severity::UNKNOWN
|
20
20
|
}.freeze
|
21
21
|
|
22
|
-
class LambdaAlreadyDefinedError < StandardError
|
23
|
-
end
|
24
|
-
|
25
22
|
class << self
|
26
23
|
def new(logger)
|
27
24
|
logger.extend(LoggerMixin)
|
@@ -54,32 +51,12 @@ module ContextualLogger
|
|
54
51
|
module LoggerMixin
|
55
52
|
include Context
|
56
53
|
|
57
|
-
delegate :register_secret, :register_secret_regex, to: :redactor
|
54
|
+
delegate :register_secret, :register_secret_regex, :redact, to: :redactor
|
58
55
|
|
59
56
|
def global_context
|
60
57
|
@global_context ||= Context::EMPTY_CONTEXT
|
61
58
|
end
|
62
59
|
|
63
|
-
def add_global_context_lambda(field, lambda)
|
64
|
-
if field.blank?
|
65
|
-
raise ArgumentError, "The field cannot be empty"
|
66
|
-
end
|
67
|
-
|
68
|
-
unless lambda.respond_to?(:call)
|
69
|
-
raise ArgumentError, "A lambda must respond to the :call method"
|
70
|
-
end
|
71
|
-
|
72
|
-
if global_context_lambdas[field]
|
73
|
-
raise ::ContextualLogger::LambdaAlreadyDefinedError, "A lambda for `#{field}` is already defined"
|
74
|
-
end
|
75
|
-
|
76
|
-
@global_context_lambdas[field] = lambda
|
77
|
-
end
|
78
|
-
|
79
|
-
def global_context_lambdas
|
80
|
-
@global_context_lambdas ||= {}
|
81
|
-
end
|
82
|
-
|
83
60
|
def global_context=(context)
|
84
61
|
if (global_context_lock_message = ::ContextualLogger.global_context_lock_message)
|
85
62
|
raise ::ContextualLogger::GlobalContextIsLocked, global_context_lock_message
|
@@ -159,8 +136,7 @@ module ContextualLogger
|
|
159
136
|
message = arg1
|
160
137
|
progname = arg2 || @progname
|
161
138
|
end
|
162
|
-
|
163
|
-
write_entry_to_log(severity, Time.now, progname, message, context: full_context)
|
139
|
+
write_entry_to_log(severity, Time.now, progname, message, context: deep_merge_with_current_context(context))
|
164
140
|
end
|
165
141
|
|
166
142
|
true
|
@@ -209,13 +185,5 @@ module ContextualLogger
|
|
209
185
|
current_context
|
210
186
|
end
|
211
187
|
end
|
212
|
-
|
213
|
-
def evaluate_global_context_lambdas(context)
|
214
|
-
if global_context_lambdas.empty?
|
215
|
-
context
|
216
|
-
else
|
217
|
-
global_context_lambdas.transform_values { |lambda| lambda.call }.merge(context)
|
218
|
-
end
|
219
|
-
end
|
220
188
|
end
|
221
189
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contextual_logger
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.0
|
4
|
+
version: 1.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Ebentier
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -28,16 +28,16 @@ dependencies:
|
|
28
28
|
name: activesupport
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - "<"
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '7.1'
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - "<"
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '7.1'
|
41
41
|
description: A way to add context to the logs you have
|
42
42
|
email: jebentier@invoca.com
|
43
43
|
executables: []
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
source_code_uri: https://github.com/Invoca/contextual_logger
|
60
60
|
allowed_push_host: https://rubygems.org
|
61
|
-
post_install_message:
|
61
|
+
post_install_message:
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
64
64
|
- lib
|
@@ -69,12 +69,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
69
|
version: '0'
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
71
71
|
requirements:
|
72
|
-
- - "
|
72
|
+
- - ">="
|
73
73
|
- !ruby/object:Gem::Version
|
74
|
-
version:
|
74
|
+
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.
|
77
|
-
signing_key:
|
76
|
+
rubygems_version: 3.4.12
|
77
|
+
signing_key:
|
78
78
|
specification_version: 4
|
79
79
|
summary: Add context to your logger
|
80
80
|
test_files: []
|