logrb 0.1.3 → 0.1.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b5d74be8b8ba51716b2ac26aa49012a07cb7a89f294ed9d94603ecf1c5b1e66
4
- data.tar.gz: 12ddcbf56cfdb6fd89c5476e04914be8aa5bb6dc3061a44cf7abbc3ff4fee454
3
+ metadata.gz: 7a53a6bde1d9ab431f87ad880a69ba3a44f8d0f2e30f130863a960d559b95365
4
+ data.tar.gz: 1f061d4e844f14e2128bd019fc16c258c23d7fd2d69e9e91631142828ea28274
5
5
  SHA512:
6
- metadata.gz: a7f6030eb6a5fd71803f7076820751f1e6bb63b4e4669fae1d0aa0f235f8200e9468784abced5818e30f061cc04c9e9ccc251e7d7ae9e9691605020017b2df87
7
- data.tar.gz: 21ee4e2c74e70fb53591ce7d1ad73c1f335a6d3b4d4e2c2c9537ef49b4bf1c7c9e82743cee1b85ec025d39e5c1936d38f59736264a6c63b14d95caef3b4cf02e
6
+ metadata.gz: 7a52eb0fa69cee37648bc2561acbcea29baab332a1228bfa94565d42c144ea5051c1125ee5d78a359f5df7f9de7e2bbad994bf6f65cac6865ce8d906dcccec0b
7
+ data.tar.gz: 71b8c09cd884198abc910854cb7919f5e3c15b82f61c6fcd36ce14ab55c016e40c324ca04f7f986574c3315cbc7c75e7e83d5f9f1cf15c05c8100f9f5686b5ab
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- logrb (0.1.2)
4
+ logrb (0.1.4)
5
5
  hexdump (~> 0.3.0)
6
6
 
7
7
  GEM
@@ -45,6 +45,7 @@ GEM
45
45
  unicode-display_width (2.0.0)
46
46
 
47
47
  PLATFORMS
48
+ arm64-darwin-23
48
49
  x86_64-darwin-20
49
50
  x86_64-linux
50
51
 
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Victor Gama
3
+ Copyright (c) 2021-2024 Vito Sartori
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/lib/logrb/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Logrb
4
- VERSION = "0.1.3"
4
+ VERSION = "0.1.4"
5
5
  end
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 - Trace to be clean.
175
+ # trace - Trace to be clean.
173
176
  # include_function_name - Optional. When true, includes the function name
174
- # on the normalized string. Defaults to false.
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
- data[:stacktrace] = backtrace(error) if level == :error
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 = ["Victor Gama"]
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.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
- - Victor Gama
7
+ - Vito Sartori
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-17 00:00:00.000000000 Z
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.2.22
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