Clarifying the json processing callbacks even further
authorChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 30 Oct 2014 18:56:55 +0000 (13:56 -0500)
committerChristopher Allan Webber <cwebber@dustycloud.org>
Thu, 30 Oct 2014 18:56:55 +0000 (13:56 -0500)
mediagoblin/tools/processing.py

index 5fb0ebf020e316d0c316235bd0375ebdad334007..26d7bb9b466b844721b7531b0068929daf997f95 100644 (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))