mirror of
https://github.com/christianselig/apollo-backend
synced 2024-11-13 07:27:43 +00:00
fix logging names
This commit is contained in:
parent
f9fd53610f
commit
88223e6155
1 changed files with 2 additions and 2 deletions
|
@ -507,7 +507,7 @@ func enqueueAccounts(ctx context.Context, logger *zap.Logger, statsd *statsd.Cli
|
|||
if len(enqueued) == 0 {
|
||||
logger.Info("no viable candidates to enqueue",
|
||||
zap.Int("offset", offset),
|
||||
zap.Int("attempts", len(ids)),
|
||||
zap.Int("candidates", len(ids)),
|
||||
zap.Int("enqueued", len(enqueued)),
|
||||
)
|
||||
return
|
||||
|
@ -525,7 +525,7 @@ func enqueueAccounts(ctx context.Context, logger *zap.Logger, statsd *statsd.Cli
|
|||
|
||||
logger.Info("enqueued account batch",
|
||||
zap.Int("offset", offset),
|
||||
zap.Int("attempts", len(ids)),
|
||||
zap.Int("candidates", len(ids)),
|
||||
zap.Int("enqueued", len(enqueued)),
|
||||
)
|
||||
}(ctx, i)
|
||||
|
|
Loading…
Reference in a new issue