Change operational log messages from Debug to Info
This commit is contained in:
@@ -74,7 +74,7 @@ func (mfa *CLIApp) freshenManifestOperation(ctx *cli.Context) error {
|
||||
}
|
||||
|
||||
existingFiles := manifest.Files()
|
||||
log.Debugf("manifest contains %d files", len(existingFiles))
|
||||
log.Infof("manifest contains %d files", len(existingFiles))
|
||||
|
||||
// Build map of existing entries by path
|
||||
existingByPath := make(map[string]*mfer.MFFilePath, len(existingFiles))
|
||||
@@ -197,7 +197,7 @@ func (mfa *CLIApp) freshenManifestOperation(ctx *cli.Context) error {
|
||||
removed = int64(len(existingByPath))
|
||||
|
||||
scanDuration := time.Since(startScan)
|
||||
log.Debugf("scan complete in %s: %d unchanged, %d changed, %d added, %d removed",
|
||||
log.Infof("scan complete in %s: %d unchanged, %d changed, %d added, %d removed",
|
||||
scanDuration.Round(time.Millisecond), unchanged, changed, added, removed)
|
||||
|
||||
// Calculate total bytes to hash
|
||||
|
||||
Reference in New Issue
Block a user