Skip to content

Commit

Permalink
Change logging level of the message for skipping unchanged records
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-p-nikolov committed Jan 13, 2020
1 parent 756f32a commit 0352146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/processor.go
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@ func (w *S3Writer) Write(uuid string, b *[]byte, ct string, tid string, ignoreHa
if err != nil {
return status, err
} else if w.onlyUpdatesEnabled && !ignoreHash && status == UNCHANGED {
logger.WithTransactionID(tid).WithUUID(uuid).Debug("Concept has not been updated since last upload, record was skipped")
logger.WithTransactionID(tid).WithUUID(uuid).Info("Concept has not been updated since last upload, record was skipped")
return status, nil
}

Expand Down

0 comments on commit 0352146

Please sign in to comment.