Skip to content

Commit

Permalink
Merge pull request VOICEVOX#27 from qryxip/fix-default-tracing-subscr…
Browse files Browse the repository at this point in the history
…iber-filter

デフォルトの`tracing_subscriber::EnvFilter`を修正
  • Loading branch information
y-chan authored Jan 20, 2023
2 parents 50d7d45 + b719554 commit 751ae7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/voicevox_core_c_api/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ static INTERNAL: Lazy<Mutex<Internal>> = Lazy::new(|| {
.with_env_filter(if env::var_os(EnvFilter::DEFAULT_ENV).is_some() {
EnvFilter::from_default_env()
} else {
"error,sharevox_core=info,sharevox_core_c_api=info,onnxruntime=info".into()
"error,voicevox_core=info,sharevox_core_c_api=info,onnxruntime=info".into()
})
.with_writer(io::stderr)
.try_init();
Expand Down

0 comments on commit 751ae7c

Please sign in to comment.