diff options
author | 2024-12-10 22:01:22 +0000 | |
---|---|---|
committer | 2024-12-10 22:01:22 +0000 | |
commit | 2ec10472e4cb46f5db08ab0dfd637b83baac0fa0 (patch) | |
tree | 5058c3bb9649428b16cd338f7c696194d804b211 | |
parent | d75d35b393d3a679f992dbc455829d7275c7fd65 (diff) | |
parent | 309c8e86533e134efc53871c32e740a11f21916c (diff) |
Merge "Fix log tag that was quoted." into main
-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."); } } |