File tree Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Expand file tree Collapse file tree 3 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def initialize(
22
22
23
23
now = args . fetch ( :now , -> { Time . now . utc } )
24
24
output = args . fetch ( :output , $stdout)
25
- level = args . fetch ( :level , DEBUG )
25
+ level = args . fetch ( :level , INFO )
26
26
validation_schema = args . fetch ( :validation_schema , DEFAULT_VALIDATION_SCHEMA )
27
27
28
28
raise 'Service name is mandatory' \
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
3
3
module Twiglet
4
- VERSION = '3.11 .0'
4
+ VERSION = '3.12 .0'
5
5
end
Original file line number Diff line number Diff line change 23
23
@logger = Twiglet ::Logger . new (
24
24
'petshop' ,
25
25
now : @now ,
26
- output : @buffer
26
+ output : @buffer ,
27
+ level : Logger ::DEBUG
27
28
)
28
29
end
29
30
652
653
'petshop' ,
653
654
now : @now ,
654
655
output : @buffer ,
655
- validation_schema : validation_schema
656
+ validation_schema : validation_schema ,
657
+ level : Logger ::DEBUG
656
658
)
657
659
end
658
660
You can’t perform that action at this time.
0 commit comments