jannie

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 6315ccf0766294ab8a627c84e58cc85929ab39f0
parent eb62e5388de61e8e153703e297eabc48c238afcb
Author: Andy Khramtsov <>
Date:   Sat,  7 Feb 2026 14:02:34 +0300

feat: log inventory

Diffstat:
Msrc/lib.rs | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/src/lib.rs b/src/lib.rs @@ -28,6 +28,8 @@ pub fn result_main() -> Result<(), Error> { let state = State::new(&args.dir, config)?; + tracing::debug!("Read inventory: {:#?}", state.inventory); + state.runtime.block_on(read(&state)); Ok(())