Skip to content
Snippets Groups Projects
Commit 357d9ae6 authored by Elliott Hughes's avatar Elliott Hughes Committed by Gerrit Code Review
Browse files

Merge "Avoid log spam for the common "no user keys" case." into main

parents b932bbb9 a52fcec3
No related branches found
No related tags found
No related merge requests found
......@@ -1797,8 +1797,13 @@ public class AdbDebuggingManager {
mFingerprints);
try {
dump.write("user_keys", AdbDebuggingManagerProto.USER_KEYS,
FileUtils.readTextFile(new File("/data/misc/adb/adb_keys"), 0, null));
File userKeys = new File("/data/misc/adb/adb_keys");
if (userKeys.exists()) {
dump.write("user_keys", AdbDebuggingManagerProto.USER_KEYS,
FileUtils.readTextFile(userKeys, 0, null));
} else {
Slog.i(TAG, "No user keys on this device");
}
} catch (IOException e) {
Slog.i(TAG, "Cannot read user keys", e);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment