ougai 1.9.1-java → 2.0.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +14 -1
- data/lib/ougai/logging.rb +2 -0
- data/lib/ougai/version.rb +1 -1
- data/spec/child_logger_spec.rb +23 -13
- data/spec/logging_spec.rb +9 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 74a6a0eada75abcdd475a429c011dfe505f59b446d0142a3b0e60d065cbcc66d
|
4
|
+
data.tar.gz: e305d3cf8b5c69279228f92ca03142971aff2f7b74219c4753cf331b9ad442c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3a2588e9a7f1cf4f13d991332e6d0b802dbff59b6f2cb30b426846848c3842d7ea739ebe506606e004092c03549287c563d73399e8f3b86c2524329fa327e0b2
|
7
|
+
data.tar.gz: f9c49782afa3f7be864cc647ff10760c872ea0c108408978d58c488bb7159021c1a99b76de0eed5b7e4772f2f9d1ede0141141bb423c5d2797dec4c246645a8e
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -194,7 +194,18 @@ logger.info('Hello!', user: { name: 'Jiro' }, version: '2.3')
|
|
194
194
|
```
|
195
195
|
|
196
196
|
If any field of with_fields is specified in each log, the field is overridden.
|
197
|
-
|
197
|
+
If the field's type is *Array*, both with_field value and logging value are merged with `concat` and `uniq`.
|
198
|
+
|
199
|
+
If the field's type is *Hash*, then values are merged recursively.
|
200
|
+
|
201
|
+
```ruby
|
202
|
+
logger.with_fields = { version: '1.1.0', user: { name: 'Taro' } }
|
203
|
+
logger.debug(user: { age: 19 })
|
204
|
+
```
|
205
|
+
|
206
|
+
```json
|
207
|
+
{"name":"test","hostname":"mint","pid":30182,"level":20,"time":"2017-07-22T20:52:12.332+09:00","v":0,"version":"1.1.0","msg":"No message","user":{"name":"Taro","age":19}}
|
208
|
+
```
|
198
209
|
|
199
210
|
### Create a child logger
|
200
211
|
|
@@ -242,6 +253,8 @@ child_logger.debug('This is not outputted')
|
|
242
253
|
|
243
254
|
If any field exists in both parent log and child log, the parent value is overridden or merged by child value.
|
244
255
|
|
256
|
+
If the field's type is *Hash*, then values are merged recursively.
|
257
|
+
|
245
258
|
### Hook before logging
|
246
259
|
|
247
260
|
Setting `before_log` of logger or child an *lambda* with `data` field, a process can be run before log each output.
|
data/lib/ougai/logging.rb
CHANGED
@@ -120,6 +120,8 @@ module Ougai
|
|
120
120
|
base_data.merge!(inferior_data) do |_, base_v, inferior_v|
|
121
121
|
if base_v.is_a?(Array) and inferior_v.is_a?(Array)
|
122
122
|
(inferior_v + base_v).uniq
|
123
|
+
elsif base_v.is_a?(Hash) and inferior_v.is_a?(Hash)
|
124
|
+
weak_merge!(base_v, inferior_v)
|
123
125
|
else
|
124
126
|
base_v
|
125
127
|
end
|
data/lib/ougai/version.rb
CHANGED
data/spec/child_logger_spec.rb
CHANGED
@@ -390,7 +390,7 @@ describe Ougai::ChildLogger do
|
|
390
390
|
parent_logger.with_fields = { foo: 11 }
|
391
391
|
logger.with_fields = { bar: '11' }
|
392
392
|
end
|
393
|
-
|
393
|
+
|
394
394
|
it 'outputs with child fields' do
|
395
395
|
logger.info(log_msg)
|
396
396
|
parent_logger.info(parent_log_msg)
|
@@ -426,7 +426,7 @@ describe Ougai::ChildLogger do
|
|
426
426
|
before do
|
427
427
|
parent_logger.with_fields = { foo: 22 }
|
428
428
|
end
|
429
|
-
|
429
|
+
|
430
430
|
it 'output with new parent fields' do
|
431
431
|
logger.info(log_msg)
|
432
432
|
parent_logger.info(parent_log_msg)
|
@@ -462,7 +462,7 @@ describe Ougai::ChildLogger do
|
|
462
462
|
before do
|
463
463
|
logger.with_fields = { bar: '33' }
|
464
464
|
end
|
465
|
-
|
465
|
+
|
466
466
|
it 'output valid' do
|
467
467
|
logger.info(log_msg)
|
468
468
|
parent_logger.info(parent_log_msg)
|
@@ -478,35 +478,45 @@ describe Ougai::ChildLogger do
|
|
478
478
|
|
479
479
|
context 'grandchild logger' do
|
480
480
|
before do
|
481
|
-
parent_logger.with_fields = { tag: 'parent', tags: ['parent'] }
|
481
|
+
parent_logger.with_fields = { tag: 'parent', tags: ['parent'], event: { module: 'core' } }
|
482
482
|
end
|
483
483
|
|
484
|
-
let(:logger) { parent_logger.child(tag: 'child', tags: ['child']) }
|
485
|
-
let(:grand_logger) { logger.child(tag: 'grandchild', tags: ['grandchild']) }
|
484
|
+
let(:logger) { parent_logger.child(tag: 'child', tags: ['child'], event: { dataset: 'core.child' }) }
|
485
|
+
let(:grand_logger) { logger.child(tag: 'grandchild', tags: ['grandchild'], event: { action: 'log-action' }) }
|
486
486
|
|
487
487
|
it 'outputs with all merged fields' do
|
488
488
|
grand_logger.info('Hi', foo: 3)
|
489
489
|
logger.info(log_msg, foo: 2)
|
490
|
-
parent_logger.info(parent_log_msg, foo: 10)
|
491
|
-
parent_logger.info('Good evening!', foo: 11)
|
490
|
+
parent_logger.info(parent_log_msg, foo: 10, event: { module: 'service' })
|
491
|
+
parent_logger.info('Good evening!', foo: 11, event: { duration: 150 })
|
492
492
|
|
493
493
|
expect(items[0]).to be_log_message('Hi', log_level)
|
494
|
-
expect(items[0]).to include(
|
494
|
+
expect(items[0]).to include(
|
495
|
+
tag: 'grandchild',
|
496
|
+
tags: ['parent', 'child', 'grandchild'],
|
497
|
+
foo: 3,
|
498
|
+
event: { module: 'core', dataset: 'core.child', action: 'log-action' }
|
499
|
+
)
|
495
500
|
|
496
501
|
expect(items[1]).to be_log_message(log_msg, log_level)
|
497
|
-
expect(items[1]).to include(
|
502
|
+
expect(items[1]).to include(
|
503
|
+
tag: 'child',
|
504
|
+
tags: ['parent', 'child'],
|
505
|
+
foo: 2,
|
506
|
+
event: { module: 'core', dataset: 'core.child' }
|
507
|
+
)
|
498
508
|
|
499
509
|
expect(items[2]).to be_log_message(parent_log_msg, log_level)
|
500
|
-
expect(items[2]).to include(tag: 'parent', tags: ['parent'], foo: 10)
|
510
|
+
expect(items[2]).to include(tag: 'parent', tags: ['parent'], foo: 10, event: { module: 'service' })
|
501
511
|
expect(items[3]).to be_log_message('Good evening!', log_level)
|
502
|
-
expect(items[3]).to include(tag: 'parent', tags: ['parent'], foo: 11)
|
512
|
+
expect(items[3]).to include(tag: 'parent', tags: ['parent'], foo: 11, event: { module: 'core', duration: 150 })
|
503
513
|
end
|
504
514
|
|
505
515
|
context 'after updating child logger with_fields' do
|
506
516
|
before do
|
507
517
|
logger.with_fields = { bar: '33' }
|
508
518
|
end
|
509
|
-
|
519
|
+
|
510
520
|
it 'outputs with child fields' do
|
511
521
|
logger.info(log_msg)
|
512
522
|
expect(items[0]).to be_log_message(log_msg, log_level)
|
data/spec/logging_spec.rb
CHANGED
@@ -24,6 +24,15 @@ describe Ougai::Logging do
|
|
24
24
|
expect(result[:bar]).to eq('base')
|
25
25
|
expect(result[:baz]).to eq(['B', 'A'])
|
26
26
|
end
|
27
|
+
|
28
|
+
it 'merges hashes recursively' do
|
29
|
+
result = nil
|
30
|
+
subject.instance_eval do
|
31
|
+
result = weak_merge!({ foo: { bar: { baz: 15 } } },
|
32
|
+
{ foo: { bar: { extra: 10 }, nested: 'string' } })
|
33
|
+
end
|
34
|
+
expect(result).to eq({ foo: { bar: { baz: 15, extra: 10 }, nested: 'string' } })
|
35
|
+
end
|
27
36
|
end
|
28
37
|
|
29
38
|
describe '#chain' do
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ougai
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Toshimitsu Takahashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-02-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|