aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Chartier <mathieuc@google.com>2017-03-03 17:47:08 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2017-03-03 17:47:08 +0000
commit4fdf2189b08a295b87cf7701aa3906646c4982cb (patch)
tree5821eec719c972157610848d79d24a1fa9a58773
parent69e8252aec6c4931e1cad428aaa2323e6bceb439 (diff)
parent1e91c9db071ec55af3a79ff1e774b04c871a2596 (diff)
downloadbuild-4fdf2189b08a295b87cf7701aa3906646c4982cb.tar.gz
Merge "Use ANDROID_LOG_TAGS to filter spammy profman output"
-rw-r--r--core/setup_one_odex.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/core/setup_one_odex.mk b/core/setup_one_odex.mk
index 608ad11ad0..dffa5c21d9 100644
--- a/core/setup_one_odex.mk
+++ b/core/setup_one_odex.mk
@@ -79,7 +79,11 @@ $(my_built_profile): $(PROFMAN)
$(my_built_profile): $(PRIVATE_INSTALLED_MODULE)
$(my_built_profile):
cp $(PRIVATE_SOURCE_CLASSES) $(PRIVATE_PROFILE_CLASSES)
- $(PROFMAN) --create-profile-from=$(PRIVATE_PROFILE_CLASSES) --apk=$(PRIVATE_INSTALLED_MODULE) --dex-location=$(PRIVATE_DEX_LOCATION) --reference-profile-file=$@
+ ANDROID_LOG_TAGS="*:e" $(PROFMAN) \
+ --create-profile-from=$(PRIVATE_PROFILE_CLASSES) \
+ --apk=$(PRIVATE_INSTALLED_MODULE) \
+ --dex-location=$(PRIVATE_DEX_LOCATION) \
+ --reference-profile-file=$@
endif
$(eval $(call copy-one-file,$(my_built_odex),$(my_installed_odex)))