diff options
| -rw-r--r-- | core/java/android/os/RecoverySystem.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/os/RecoverySystem.java b/core/java/android/os/RecoverySystem.java index 8a1774291e9f..bb74a3e7f896 100644 --- a/core/java/android/os/RecoverySystem.java +++ b/core/java/android/os/RecoverySystem.java @@ -1436,10 +1436,10 @@ public class RecoverySystem { * @throws IOException if the recovery system service could not be contacted */ private boolean requestLskf(String packageName, IntentSender sender) throws IOException { - Log.i(TAG, String.format("<%s> is requesting LSFK", packageName)); + Log.i(TAG, TextUtils.formatSimple("Package<%s> requesting LSKF", packageName)); try { boolean validRequest = mService.requestLskf(packageName, sender); - Log.i(TAG, String.format("LSKF Request isValid = %b", validRequest)); + Log.i(TAG, TextUtils.formatSimple("LSKF Request isValid = %b", validRequest)); return validRequest; } catch (RemoteException | SecurityException e) { throw new IOException("could not request LSKF capture", e); |