Change operational log messages from Debug to Info

This commit is contained in:
2025-12-17 15:02:46 -08:00
parent 45201509ff
commit e6cb906d35
4 changed files with 6 additions and 6 deletions

View File

@@ -66,7 +66,7 @@ func (mfa *CLIApp) generateManifestOperation(ctx *cli.Context) error {
}
enumWg.Wait()
log.Debugf("enumerated %d files, %d bytes total", s.FileCount(), s.TotalBytes())
log.Infof("enumerated %d files, %d bytes total", s.FileCount(), s.TotalBytes())
// Check if output file exists
outputPath := ctx.String("output")