removed useless trace call in activator

This commit is contained in:
2026-03-09 23:40:43 +01:00
parent b354eedcef
commit 22c5c7ee91

View File

@@ -104,7 +104,6 @@ fn create_plugins_txt(
fn link_file(target: &Path, link_name: &Path) -> Result<(), io::Error> { fn link_file(target: &Path, link_name: &Path) -> Result<(), io::Error> {
if let Some(parent) = link_name.parent() { if let Some(parent) = link_name.parent() {
fs::create_dir_all(parent)?; fs::create_dir_all(parent)?;
trace!("Creating parent dir for {}", link_name.to_string_lossy());
} }
create_symlink_for_file(target, link_name)?; create_symlink_for_file(target, link_name)?;