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:
parent
f4816466b7
commit
4b76243662
1 changed files with 0 additions and 4 deletions
|
|
@ -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<()> {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue