logrb 0.1.3 → 0.1.4
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/Gemfile.lock +2 -1
- data/LICENSE.txt +1 -1
- data/lib/logrb/version.rb +1 -1
- data/lib/logrb.rb +12 -3
- data/logrb.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7a53a6bde1d9ab431f87ad880a69ba3a44f8d0f2e30f130863a960d559b95365
|
4
|
+
data.tar.gz: 1f061d4e844f14e2128bd019fc16c258c23d7fd2d69e9e91631142828ea28274
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7a52eb0fa69cee37648bc2561acbcea29baab332a1228bfa94565d42c144ea5051c1125ee5d78a359f5df7f9de7e2bbad994bf6f65cac6865ce8d906dcccec0b
|
7
|
+
data.tar.gz: 71b8c09cd884198abc910854cb7919f5e3c15b82f61c6fcd36ce14ab55c016e40c324ca04f7f986574c3315cbc7c75e7e83d5f9f1cf15c05c8100f9f5686b5ab
|
data/Gemfile.lock
CHANGED
data/LICENSE.txt
CHANGED
data/lib/logrb/version.rb
CHANGED
data/lib/logrb.rb
CHANGED
@@ -25,8 +25,11 @@ require "json"
|
|
25
25
|
# current process to exit with a status 1.
|
26
26
|
#
|
27
27
|
# #warn(msg, **fields): Outputs a warning entry.
|
28
|
+
#
|
28
29
|
# #info(msg, **fields): Outputs a informational entry.
|
30
|
+
#
|
29
31
|
# #debug(msg, **fields): Outputs a debug entry.
|
32
|
+
#
|
30
33
|
# #dump(msg, data=nil): Outputs a given String or Array of bytes using the
|
31
34
|
# same format as `hexdump -C`.
|
32
35
|
class Logrb
|
@@ -169,9 +172,9 @@ class Logrb
|
|
169
172
|
|
170
173
|
# Internal: Performs a cleanup for a given backtrace frame.
|
171
174
|
#
|
172
|
-
# trace
|
175
|
+
# trace - Trace to be clean.
|
173
176
|
# include_function_name - Optional. When true, includes the function name
|
174
|
-
#
|
177
|
+
# on the normalized string. Defaults to false.
|
175
178
|
def normalize_location(trace, include_function_name: false)
|
176
179
|
path = trace.absolute_path
|
177
180
|
return trace.to_s if path.nil?
|
@@ -189,6 +192,7 @@ class Logrb
|
|
189
192
|
end
|
190
193
|
|
191
194
|
# Internal: Composes a log line with given information.
|
195
|
+
#
|
192
196
|
# level - The severity of the log message
|
193
197
|
# caller_meta - An Array containing the caller's location and name
|
194
198
|
# msg - The message to be logged
|
@@ -206,6 +210,7 @@ class Logrb
|
|
206
210
|
end
|
207
211
|
|
208
212
|
# Internal: Logs a text entry to the current output.
|
213
|
+
#
|
209
214
|
# level - The severity of the message to be logged.
|
210
215
|
# msg - The message to be logged
|
211
216
|
# error - Either an Exception object or nil. This parameter is used
|
@@ -250,6 +255,7 @@ class Logrb
|
|
250
255
|
end
|
251
256
|
|
252
257
|
# Internal: Logs a JSON entry to the current output.
|
258
|
+
#
|
253
259
|
# level - The severity of the message to be logged.
|
254
260
|
# msg - The message to be logged
|
255
261
|
# error - Either an Exception object or nil. This parameter is used
|
@@ -267,7 +273,10 @@ class Logrb
|
|
267
273
|
ts: Time.now.utc.to_i
|
268
274
|
}
|
269
275
|
|
270
|
-
|
276
|
+
if level == :error
|
277
|
+
data[:exception] = error.message if error.respond_to?(:message)
|
278
|
+
data[:stacktrace] = backtrace(error)
|
279
|
+
end
|
271
280
|
|
272
281
|
data.merge!(fields)
|
273
282
|
write_output("#{data.to_json}\n")
|
data/logrb.gemspec
CHANGED
@@ -5,7 +5,7 @@ require_relative "lib/logrb/version"
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = "logrb"
|
7
7
|
spec.version = Logrb::VERSION
|
8
|
-
spec.authors = ["
|
8
|
+
spec.authors = ["Vito Sartori"]
|
9
9
|
spec.email = ["hey@vito.io"]
|
10
10
|
|
11
11
|
spec.summary = "Small logger inspired by Go's Zap"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logrb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Vito Sartori
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: hexdump
|
@@ -68,7 +68,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
68
68
|
- !ruby/object:Gem::Version
|
69
69
|
version: '0'
|
70
70
|
requirements: []
|
71
|
-
rubygems_version: 3.
|
71
|
+
rubygems_version: 3.4.10
|
72
72
|
signing_key:
|
73
73
|
specification_version: 4
|
74
74
|
summary: Small logger inspired by Go's Zap
|