@@ -162,7 +162,8 @@ func (a *AggregateProjector) processNotification(
162162 // Resolve the action to take based on the error that occurred
163163 logFields := func (e goengine.LoggerEntry ) {
164164 e .Error (err )
165- e .Any ("notification" , notification )
165+ e .Int64 ("notification.no" , notification .No )
166+ e .String ("notification.aggregate_id" , notification .AggregateID )
166167 }
167168 switch resolveErrorAction (a .projectionErrorHandler , notification , err ) {
168169 case errorFail :
@@ -231,13 +232,15 @@ func (a *AggregateProjector) triggerOutOfSyncProjections(ctx context.Context, qu
231232 if err := queue (ctx , notification ); err != nil {
232233 a .logger .Error ("failed to queue notification" , func (e goengine.LoggerEntry ) {
233234 e .Error (err )
234- e .Any ("notification" , notification )
235+ e .Int64 ("notification.no" , notification .No )
236+ e .String ("notification.aggregate_id" , notification .AggregateID )
235237 })
236238 return err
237239 }
238240
239241 a .logger .Debug ("send catchup" , func (e goengine.LoggerEntry ) {
240- e .Any ("notification" , notification )
242+ e .Int64 ("notification.no" , notification .No )
243+ e .String ("notification.aggregate_id" , notification .AggregateID )
241244 })
242245 }
243246
0 commit comments