diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-12-09 10:54:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-09 10:54:24 -0500 |
commit | 653aebfa1aa9121070df98ee88474b5f821fb15d (patch) | |
tree | 90766bc70aa83f4f16ec1c517e495cd7c6a98fbd /cli/graph_util.rs | |
parent | cb6700fa5aac03fb3e082f9ed2e01d74238e6a99 (diff) |
fix: respect the `--quiet` flag in more cases (#16998)
Diffstat (limited to 'cli/graph_util.rs')
-rw-r--r-- | cli/graph_util.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/graph_util.rs b/cli/graph_util.rs index 253d556e0..2c44e39c2 100644 --- a/cli/graph_util.rs +++ b/cli/graph_util.rs @@ -563,7 +563,7 @@ pub async fn create_graph_and_maybe_check( lib: ps.options.ts_type_lib_window(), })?; if let Some(ignored_options) = ts_config_result.maybe_ignored_options { - eprintln!("{}", ignored_options); + log::warn!("{}", ignored_options); } let maybe_config_specifier = ps.options.maybe_config_file_specifier(); let cache = TypeCheckCache::new(&ps.dir.type_checking_cache_db_file_path()); |