fix logger variable

This commit is contained in:
Tobiasz Heller 2024-03-26 20:32:57 +01:00
parent fed62e88cf
commit 87204ad85e

View File

@ -46,9 +46,7 @@ type Send2FaTokenHandler struct {
func (h *Send2FaTokenHandler) Handle(ctx context.Context, cmd *Send2FaToken) error { func (h *Send2FaTokenHandler) Handle(ctx context.Context, cmd *Send2FaToken) error {
extId, _ := uuid.Parse(cmd.ExtensionId) extId, _ := uuid.Parse(cmd.ExtensionId)
log := logging.FromContext(ctx) log := logging.FromContext(ctx).WithFields(logging.Fields{
log = log.WithFields(logging.Fields{
"browser_extension_id": cmd.ExtensionId, "browser_extension_id": cmd.ExtensionId,
"device_id": cmd.DeviceId, "device_id": cmd.DeviceId,
"token_request_id": cmd.TokenRequestId, "token_request_id": cmd.TokenRequestId,