Skip to content

Commit

Permalink
drop log messages regarding attestation storage to debug (#1408)
Browse files Browse the repository at this point in the history
Signed-off-by: Bob Callaway <bcallaway@google.com>
  • Loading branch information
bobcallaway committed Mar 28, 2023
1 parent 924d5b1 commit abf7cee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/api/entries.go
Expand Up @@ -255,9 +255,9 @@ func createLogEntry(params entries.CreateLogEntryParams) (models.LogEntry, middl
go func() {
if err := storeAttestation(context.Background(), attKey, attVal); err != nil {
// entryIDstruct.UUID
log.ContextLogger(ctx).Errorf("error storing attestation: %s", err)
log.ContextLogger(ctx).Debugf("error storing attestation: %s", err)
} else {
log.ContextLogger(ctx).Infof("stored attestation for uuid %s with filename %s", entryIDstruct.UUID, attKey)
log.ContextLogger(ctx).Debugf("stored attestation for uuid %s with filename %s", entryIDstruct.UUID, attKey)
}
}()
} else {
Expand Down

0 comments on commit abf7cee

Please sign in to comment.