mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
fix(resolver): log error as debug so it does not print the error by default
This commit is contained in:
parent
fbbc1fe6bd
commit
384c3fc00f
1 changed files with 1 additions and 1 deletions
|
|
@ -178,7 +178,7 @@ impl<Fs: FileSystem> ResolverGeneric<Fs> {
|
|||
let r = self.resolve_impl(path, specifier);
|
||||
match &r {
|
||||
Ok(r) => tracing::debug!(path = ?path, specifier = specifier, ret = ?r.path),
|
||||
Err(err) => tracing::error!(path = ?path, specifier = specifier, err = ?err),
|
||||
Err(err) => tracing::debug!(path = ?path, specifier = specifier, err = ?err),
|
||||
};
|
||||
r
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue