summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Brad Lassey <lassey@google.com> 2024-12-05 11:44:45 -0500
committer Brad Lassey <lassey@google.com> 2024-12-05 11:44:45 -0500
commit309c8e86533e134efc53871c32e740a11f21916c (patch)
treeb53ac4ff775d6edb9a36b5f61461822de4ae41f1
parentaf71583acee5308b3280baee6c69b28eb5d64c38 (diff)
Fix log tag that was quoted.
Bug: 382480110 Test: EXEMPT bugfix Flag: EXEMPT bugfix Change-Id: I9aeb2de2b3253561cd2027a7d9a5f5a9d4416184
-rw-r--r--nfc/java/android/nfc/cardemulation/HostApduService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/nfc/java/android/nfc/cardemulation/HostApduService.java b/nfc/java/android/nfc/cardemulation/HostApduService.java
index db1f6a2bb3b1..fbf2203b40b4 100644
--- a/nfc/java/android/nfc/cardemulation/HostApduService.java
+++ b/nfc/java/android/nfc/cardemulation/HostApduService.java
@@ -289,7 +289,7 @@ public abstract class HostApduService extends Service {
try {
mNfcService.send(responseMsg);
} catch (RemoteException e) {
- Log.e("TAG", "Response not sent; RemoteException calling into " +
+ Log.e(TAG, "Response not sent; RemoteException calling into " +
"NfcService.");
}
}