We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6da0ab commit e2369f2Copy full SHA for e2369f2
internal/incoming/web/api_files.go
@@ -72,7 +72,11 @@ func (c *FilesController) listenForCancellations() {
72
for {
73
// Wait for a message
74
cancel := <-c.cancellationResponses
75
- c.logger.Info().Logf("received cancellation response: %#v", cancel)
+ c.logger.Info().With(log.Fields{
76
+ "file_id": log.String(cancel.FileID),
77
+ "shard_key": log.String(cancel.ShardKey),
78
+ "successful": log.Bool(cancel.Successful),
79
+ }).Log("received cancellation response")
80
81
fileID := strings.TrimSuffix(cancel.FileID, ".ach")
82
0 commit comments