feat(package_manager): remove redundant trace log in install_local

The trace log for successful component installation was removed as it was deemed unnecessary. The success of the installation is already indicated by the Ok(()) return value, making the log redundant. This change simplifies the code while maintaining the same functionality.
This commit is contained in:
Rodrigo Rodriguez (Pragmatismo) 2025-11-12 13:22:46 -03:00
parent f4816466b7
commit 4b76243662

View file

@ -78,10 +78,6 @@ impl PackageManager {
}
}
self.run_commands(post_cmds, "local", &component.name)?;
trace!(
"Component '{}' installation completed successfully",
component.name
);
Ok(())
}
pub fn install_container(&self, component: &ComponentConfig) -> Result<()> {