Clarifying the json processing callbacks even further

This commit is contained in:
Christopher Allan Webber 2014-10-30 13:56:55 -05:00
parent 770d0efa3a
commit d46267da46

View File

@ -47,12 +47,12 @@ def json_processing_callback(entry):
Send an HTTP post to the registered callback url, if any.
'''
if not entry.processing_metadata:
_log.debug('No metadata processing callback for {0}'.format(entry))
_log.debug('No processing callback URL for {0}'.format(entry))
return
url = entry.processing_metadata[0].callback_url
_log.debug('Sending metadata processing callback for {0} ({1})'.format(
_log.debug('Sending processing callback for {0} to {1}'.format(
entry,
url))