Merge "Remove noisy DEBUG log" into stable/queens

This commit is contained in:
Zuul 2018-09-21 12:01:58 +00:00 committed by Gerrit Code Review
commit ddb90b8a2d
1 changed files with 4 additions and 6 deletions

View File

@ -122,12 +122,10 @@ class NotificationPayloadBase(NotificationObject):
except (exception.ObjectActionError,
NotImplementedError,
exception.OrphanedObjectError,
ovo_exception.OrphanedObjectError) as e:
LOG.debug(("Defaulting the value of the field '%(field)s' "
"to None in %(payload)s due to '%(exception)s'"),
{'field': key,
'payload': self.__class__.__name__,
'exception': e})
ovo_exception.OrphanedObjectError):
# If it is unset or non lazy loadable in the source object
# then we cannot do anything else but try to default it in the
# payload object we are generating here.
# NOTE(gibi): This will fail if the payload field is not
# nullable, but that means that either the source object is not
# properly initialized or the payload field needs to be defined