remove redundant log

This commit is contained in:
Girish Ramakrishnan
2015-10-12 21:54:25 -07:00
parent d4c62c7295
commit 1909050be2
+2 -2
View File
@@ -149,11 +149,11 @@ function pullImage(app, callback) {
// is emitted as a chunk
stream.on('data', function (chunk) {
var data = safe.JSON.parse(chunk) || { };
debugApp(app, 'downloadImage data: %j', data);
debugApp(app, 'pullImage data: %j', data);
// The information here is useless because this is per layer as opposed to per image
if (data.status) {
debugApp(app, 'progress: %s', data.status); // progressDetail { current, total }
// debugApp(app, 'progress: %s', data.status); // progressDetail { current, total }
} else if (data.error) {
debugApp(app, 'error detail: %s', data.errorDetail.message);
}