diff options
Diffstat (limited to 'cli/worker.rs')
-rw-r--r-- | cli/worker.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/worker.rs b/cli/worker.rs index 9125f28be..36435d634 100644 --- a/cli/worker.rs +++ b/cli/worker.rs @@ -571,6 +571,7 @@ impl CliMainWorkerFactory { no_color: !colors::use_color(), is_stdout_tty: deno_terminal::is_stdout_tty(), is_stderr_tty: deno_terminal::is_stderr_tty(), + color_level: colors::get_color_level(), unstable: shared.options.unstable, unstable_features, user_agent: version::get_user_agent().to_string(), @@ -773,6 +774,7 @@ fn create_web_worker_callback( locale: deno_core::v8::icu::get_language_tag(), location: Some(args.main_module.clone()), no_color: !colors::use_color(), + color_level: colors::get_color_level(), is_stdout_tty: deno_terminal::is_stdout_tty(), is_stderr_tty: deno_terminal::is_stderr_tty(), unstable: shared.options.unstable, |