Skip to content

Commit

Permalink
Move compact snapshot logs from info to verbose level
Browse files Browse the repository at this point in the history
  • Loading branch information
seanlinsley committed Oct 24, 2023
1 parent 8ea15d0 commit 7b95308
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions output/compact.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ func uploadAndSubmitCompactSnapshot(ctx context.Context, s pganalyze_collector.C
if collectionOpts.OutputAsJson {
debugCompactOutputAsJSON(logger, compressedData)
} else if !quiet {
logger.PrintInfo("Collected compact %s snapshot successfully", kind)
logger.PrintVerbose("Collected compact %s snapshot successfully", kind)
}
return nil
}
Expand Down Expand Up @@ -137,7 +137,7 @@ func submitCompactSnapshot(ctx context.Context, server *state.Server, collection
if len(msg) > 0 && collectionOpts.TestRun {
logger.PrintInfo(" %s", msg)
} else if !quiet {
logger.PrintInfo("Submitted compact %s snapshot successfully", kind)
logger.PrintVerbose("Submitted compact %s snapshot successfully", kind)
}

return nil
Expand Down

0 comments on commit 7b95308

Please sign in to comment.