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

Unified Diff: build/android/resource_sizes.py

Issue 1925063003: [Android] Add logging to resource_sizes.py (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/resource_sizes.py
diff --git a/build/android/resource_sizes.py b/build/android/resource_sizes.py
index 936443a9f34164057c7eb8bf3784bbfd2eebafd1..83542d350f83fb018095f12f4e1213fd4630c58d 100755
--- a/build/android/resource_sizes.py
+++ b/build/android/resource_sizes.py
@@ -11,6 +11,7 @@
import collections
import json
+import logging
import operator
import optparse
import os
@@ -408,6 +409,7 @@ Pass any number of files to graph their sizes. Any files with the extension
if chartjson:
results_path = os.path.join(options.output_dir, 'results-chart.json')
+ logging.critical('Dumping json to %s', results_path)
with open(results_path, 'w') as json_file:
json.dump(chartjson, json_file)
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698