Fixing log message in IntentCleanup
Change-Id: Idbbfd8004f84b8667ad8c6bcf1572ada7026686d
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -196,7 +196,7 @@ public class IntentCleanup implements Runnable, IntentListener { | ... | @@ -196,7 +196,7 @@ public class IntentCleanup implements Runnable, IntentListener { |
196 | service.withdraw(intentData.intent()); | 196 | service.withdraw(intentData.intent()); |
197 | break; | 197 | break; |
198 | default: | 198 | default: |
199 | - log.warn("Trying to resubmit pending intent {} in state {} with request {}", | 199 | + log.warn("Failed to resubmit pending intent {} in state {} with request {}", |
200 | intentData.key(), intentData.state(), intentData.request()); | 200 | intentData.key(), intentData.state(), intentData.request()); |
201 | break; | 201 | break; |
202 | } | 202 | } | ... | ... |
-
Please register or login to post a comment