Skip to content

Commit 5c6d90a

Browse files
committed
chore: change log level to warn for venv_compat error
1 parent ea474e1 commit 5c6d90a

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/run/runner/valgrind/executor.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ impl Executor for ValgrindExecutor {
2121
install_valgrind(system_info).await?;
2222

2323
if let Err(error) = venv_compat::symlink_libpython(None) {
24-
error!("Failed to symlink libpython: {error}");
24+
warn!("Failed to symlink libpython");
25+
debug!("Script error: {error}");
2526
}
2627

2728
Ok(())

0 commit comments

Comments
 (0)