Fix multiline function call style violations
Expand mixed inline/multiline function calls so each argument is on its own line, matching the one-argument-per-line rule. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
@@ -293,7 +293,9 @@ func (w *SendingWorker) failEmail(
|
||||
email *coredata.Email,
|
||||
processingError error,
|
||||
) error {
|
||||
w.logger.ErrorCtx(ctx, "sending worker failure",
|
||||
w.logger.ErrorCtx(
|
||||
ctx,
|
||||
"sending worker failure",
|
||||
log.Error(processingError),
|
||||
log.String("email_id", email.ID.String()),
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user