Add error message for func saveStruct

This commit is contained in:
Владислав Весельский 2024-03-12 10:31:53 +03:00
parent b31ca726e2
commit 218e470106
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ func saveStruct(
if err := SaveRow(ctx, db, row); err != nil {
span.RecordError(err)
span.SetStatus(codes.Error, err.Error())
return err
return errors.WithMessagef(err, "Can not execute saveStruct. Got error from SaveRow. ownerId: %d.", ownerId)
}
return nil