Skip to content

feat: rename option log_to_stdout console for dfinit #1165

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dragonfly-client-init/src/bin/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ struct Args {
log_max_files: usize,

#[arg(long, default_value_t = false, help = "Specify whether to print log")]
log_to_stdout: bool,
console: bool,

#[arg(
short = 'V',
Expand All @@ -92,7 +92,7 @@ async fn main() -> Result<(), anyhow::Error> {
None,
None,
false,
args.log_to_stdout,
args.console,
);

// Load config.
Expand Down