From: Christopher Allan Webber Date: Thu, 30 Oct 2014 18:56:55 +0000 (-0500) Subject: Clarifying the json processing callbacks even further X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=d46267da46116a0e0991ffa5424831607ebd6d73;p=mediagoblin.git Clarifying the json processing callbacks even further --- diff --git a/mediagoblin/tools/processing.py b/mediagoblin/tools/processing.py index 5fb0ebf0..26d7bb9b 100644 --- a/mediagoblin/tools/processing.py +++ b/mediagoblin/tools/processing.py @@ -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))