Skip to content

Commit be00b41

Browse files
committed
DevicePolicyManagerService: dump less
Reduce the amount of unnecessary information emitted from the DevicePolicyManagerService. Bug: 6732364 Change-Id: I639f6beab8471bdbe41ce6cd3a5a378acaf678b2
1 parent e40c463 commit be00b41

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

services/java/com/android/server/DevicePolicyManagerService.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2118,16 +2118,6 @@ protected void dump(FileDescriptor fd, PrintWriter pw, String[] args) {
21182118
}
21192119

21202120
pw.println(" ");
2121-
pw.print(" mActivePasswordQuality=0x");
2122-
pw.println(Integer.toHexString(mActivePasswordQuality));
2123-
pw.print(" mActivePasswordLength="); pw.println(mActivePasswordLength);
2124-
pw.print(" mActivePasswordUpperCase="); pw.println(mActivePasswordUpperCase);
2125-
pw.print(" mActivePasswordLowerCase="); pw.println(mActivePasswordLowerCase);
2126-
pw.print(" mActivePasswordLetters="); pw.println(mActivePasswordLetters);
2127-
pw.print(" mActivePasswordNumeric="); pw.println(mActivePasswordNumeric);
2128-
pw.print(" mActivePasswordSymbols="); pw.println(mActivePasswordSymbols);
2129-
pw.print(" mActivePasswordNonLetter="); pw.println(mActivePasswordNonLetter);
2130-
pw.print(" mFailedPasswordAttempts="); pw.println(mFailedPasswordAttempts);
21312121
pw.print(" mPasswordOwner="); pw.println(mPasswordOwner);
21322122
}
21332123
}

0 commit comments

Comments
 (0)