Skip to content

Commit

Permalink
chore: change trivial log from INFO to DEBUG
Browse files Browse the repository at this point in the history
Signed-off-by: 泰友 <[email protected]>
  • Loading branch information
泰友 committed Jul 8, 2022
1 parent 926f2e1 commit dce9ca6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rafs/src/metadata/md_v5.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl RafsSuper {
self.meta.chunk_size = sb.block_size();
self.meta.flags = RafsSuperFlags::from_bits(sb.flags())
.ok_or_else(|| einval!(format!("invalid super flags {:x}", sb.flags())))?;
info!("rafs superblock features: {}", self.meta.flags);
debug!("rafs superblock features: {}", self.meta.flags);

self.meta.inodes_count = sb.inodes_count();
self.meta.inode_table_entries = sb.inode_table_entries();
Expand Down
2 changes: 1 addition & 1 deletion src/bin/nydus-image/unpack/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ impl OCIUnpacker {

impl Unpacker for OCIUnpacker {
fn unpack(&self) -> Result<()> {
info!(
debug!(
"oci unpacker, bootstrap file: {:?}, blob file: {:?}, output file: {:?}",
self.bootstrap, self.blob, self.output
);
Expand Down

0 comments on commit dce9ca6

Please sign in to comment.