Fix default verbosity (default: max).

master
Philippe Pittoli 2023-05-07 03:06:17 +02:00
parent a5102c2db0
commit 69add25ec2
1 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ class Baguette::Configuration
property print_ipc_error : Bool = true
property print_ipc_exception : Bool = true
property verbosity : Int32 = 2
property verbosity : Int32 = 4
def initialize
end
@ -95,7 +95,7 @@ class Baguette::Configuration
end
parser.on "-v verbosity", "--verbosity level",
"Verbosity level. From 0 to 3. Default: 1" do |v|
"Verbosity level. From 0 to 4. Default: 4" do |v|
Baguette::Context.verbosity = v.to_i
end