Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1740)

Unified Diff: au_test_harness/dummy_au_worker.py

Issue 6857004: Clean up extreme verbosity of logs in test harness. (Closed) Base URL: http://git.chromium.org/git/crostestutils.git@master
Patch Set: Reenable test Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: au_test_harness/dummy_au_worker.py
diff --git a/au_test_harness/dummy_au_worker.py b/au_test_harness/dummy_au_worker.py
index fa1bee042a5b37b9d3889fff6b2d9ffa7cf82860..750203ea0703def47fecb90f0c35bc0ce37e5adc 100644
--- a/au_test_harness/dummy_au_worker.py
+++ b/au_test_harness/dummy_au_worker.py
@@ -6,6 +6,8 @@
import unittest
+import cros_build_lib as cros_lib
+
import au_worker
class DummyAUWorker(au_worker.AUWorker):
@@ -39,6 +41,7 @@ class DummyAUWorker(au_worker.AUWorker):
# Generate a value that combines delta with private key path.
val = src_image_path
if private_key_path: val = '%s+%s' % (val, private_key_path)
+ cros_lib.Info('Adding update needed from %s to %s' % (image_path, val))
if not self.delta_list.has_key(image_path):
self.delta_list[image_path] = set([val])
else:

Powered by Google App Engine
This is Rietveld 408576698