Skip to content

Commit 2e58099

Browse files
committed
Change default log level, bump version number for release
1 parent 788e3a2 commit 2e58099

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ authors = [
1313
"Nikita Chashchinskii <nikita.chashchinskii@gmail.com>"
1414
]
1515
edition = "2021"
16-
version = "0.8.5"
16+
version = "0.8.6"
1717

1818
[workspace.dependencies.bip300301]
1919
git = "https://github.com/Ash-L2L/bip300301.git"

app/cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ pub struct Cli {
1010
/// If specified, the gui will not launch.
1111
#[arg(long)]
1212
pub headless: bool,
13-
/// Log level, defaults to [`tracing::Level::Info`]
14-
#[arg(default_value_t = tracing::Level::INFO, long)]
13+
/// Log level, defaults to [`tracing::Level::Debug`]
14+
#[arg(default_value_t = tracing::Level::DEBUG, long)]
1515
pub log_level: tracing::Level,
1616
/// address to use for P2P networking, defaults to 0.0.0.0:4000
1717
#[arg(short, long)]

0 commit comments

Comments
 (0)