:wave:!
I was looking at my dependency tree and noticed file-per-thread-logger
in my dependencies, because of wasmtime-cache
. It feels weird that wasmtime-cache
would depend on that, so I looked up where it was used and it turns out that it's actually never used!
It would be used here: https://github.com/bytecodealliance/wasmtime/blob/df1502531d437b2105effb990a7caa28796aa985/crates/cache/src/worker.rs#L56
But that function is always called with the init_file_per_thread_logger
set to None
, and it's not a public function. Am I missing something, or can I try removing this dependency?
Here's a PR: https://github.com/bytecodealliance/wasmtime/pull/6910
Last updated: Nov 22 2024 at 16:03 UTC