From c9d6a26a70e8f365df0378a513e57429051403e4 Mon Sep 17 00:00:00 2001 From: Chenyu Li Date: Tue, 25 Jul 2023 10:46:25 -0700 Subject: [PATCH] Update core/dbt/cli/params.py Co-authored-by: Peter Webb --- core/dbt/cli/params.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/dbt/cli/params.py b/core/dbt/cli/params.py index 6add3a3d694..3bec7804f4e 100644 --- a/core/dbt/cli/params.py +++ b/core/dbt/cli/params.py @@ -174,7 +174,7 @@ log_file_max_bytes = click.option( "--log-file-max-bytes", envvar="DBT_LOG_FILE_MAX_BYTES", - help="Configure the max file size in bytes for a single dbt.log file. 0 means no limit.", + help="Configure the max file size in bytes for a single dbt.log file, before rolling over. 0 means no limit.", default=10 * 1024 * 1024, # 10mb type=click.INT, hidden=True,