feat: rename option log_to_stdout console for dfinit (#1165)
Signed-off-by: Gaius <gaius.qi@gmail.com>
This commit is contained in:
parent
7819702b67
commit
44d58fee37
|
|
@ -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',
|
||||
|
|
@ -92,7 +92,7 @@ async fn main() -> Result<(), anyhow::Error> {
|
|||
None,
|
||||
None,
|
||||
false,
|
||||
args.log_to_stdout,
|
||||
args.console,
|
||||
);
|
||||
|
||||
// Load config.
|
||||
|
|
|
|||
Loading…
Reference in New Issue