feat: rename option log_to_stdout console for dfinit (#1165)

Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
Gaius 2025-05-29 11:30:26 +08:00 committed by GitHub
parent 7819702b67
commit 44d58fee37
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -65,7 +65,7 @@ struct Args {
log_max_files: usize, log_max_files: usize,
#[arg(long, default_value_t = false, help = "Specify whether to print log")] #[arg(long, default_value_t = false, help = "Specify whether to print log")]
log_to_stdout: bool, console: bool,
#[arg( #[arg(
short = 'V', short = 'V',
@ -92,7 +92,7 @@ async fn main() -> Result<(), anyhow::Error> {
None, None,
None, None,
false, false,
args.log_to_stdout, args.console,
); );
// Load config. // Load config.