diff options
Diffstat (limited to 'crates/shirabe/src/installer.rs')
| -rw-r--r-- | crates/shirabe/src/installer.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/shirabe/src/installer.rs b/crates/shirabe/src/installer.rs index 3cdb046b..883ee134 100644 --- a/crates/shirabe/src/installer.rs +++ b/crates/shirabe/src/installer.rs @@ -216,6 +216,7 @@ impl Installer { } /// Run installation (or update) + #[tracing::instrument(skip_all)] pub fn run(&mut self) -> anyhow::Result<i64> { // Disable GC to save CPU cycles, as the dependency solver can create hundreds of thousands // of PHP objects, the GC can spend quite some time walking the tree of references looking @@ -560,6 +561,7 @@ impl Installer { Ok(0) } + #[tracing::instrument(skip_all)] pub(crate) fn do_update( &mut self, local_repo: crate::repository::RepositoryInterfaceHandle, |
