Committed by
Gerrit Code Review
IntentManager: lower log level to dump details
Change-Id: Ib0e1d34d45c9df9369b6ad28c6c86e47987f9366
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -833,7 +833,8 @@ public class IntentManager | ... | @@ -833,7 +833,8 @@ public class IntentManager |
833 | private class InternalBatchDelegate implements IntentBatchDelegate { | 833 | private class InternalBatchDelegate implements IntentBatchDelegate { |
834 | @Override | 834 | @Override |
835 | public void execute(IntentOperations operations) { | 835 | public void execute(IntentOperations operations) { |
836 | - log.info("Execute operations: {}", operations); | 836 | + log.info("Execute {} operation(s).", operations.operations().size()); |
837 | + log.debug("Execute operations: {}", operations.operations()); | ||
837 | //FIXME: perhaps we want to track this task so that we can cancel it. | 838 | //FIXME: perhaps we want to track this task so that we can cancel it. |
838 | monitorExecutor.execute(new IntentInstallMonitor(operations)); | 839 | monitorExecutor.execute(new IntentInstallMonitor(operations)); |
839 | } | 840 | } | ... | ... |
-
Please register or login to post a comment