diff options
author | 2024-12-05 11:44:45 -0500 | |
---|---|---|
committer | 2024-12-05 11:44:45 -0500 | |
commit | 309c8e86533e134efc53871c32e740a11f21916c (patch) | |
tree | b53ac4ff775d6edb9a36b5f61461822de4ae41f1 | |
parent | af71583acee5308b3280baee6c69b28eb5d64c38 (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.java | 2 |
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."); } } |