diff --git a/README.md b/README.md index 9fee8de..e74a4db 100644 --- a/README.md +++ b/README.md @@ -16,6 +16,7 @@ Options: -i, --in-file The file to log stdin to [env: IN_FILE=] -o, --out-file The file to log stdout to [env: OUT_FILE=] -e, --err-file The file to log stderr to [env: ERR_FILE=] + --no-header Whether to write a header to the log file(s) [env: NO_HEADER=] -h, --help Print help -V, --version Print version ``` diff --git a/src/main.rs b/src/main.rs index fa36389..2734113 100644 --- a/src/main.rs +++ b/src/main.rs @@ -18,6 +18,7 @@ struct Args { #[arg(short, long, env)] err_file: Option, + /// Whether to write a header to the log file(s). #[arg(long, env)] no_header: bool,