Reduce logging.
Remember, the system and main logs are
- Shared resources
- Primarily for recording problems
- To be used only for large grained events during normal operation
Bug: 3104855
Change-Id: I136fbd101917dcbc8ebc3f96f276426b48bde7b7
This commit is contained in:
@@ -664,11 +664,11 @@ class BackupManagerService extends IBackupManager.Stub {
|
||||
// backup.
|
||||
RandomAccessFile in = null;
|
||||
try {
|
||||
Slog.i(TAG, "Found stale backup journal, scheduling:");
|
||||
Slog.i(TAG, "Found stale backup journal, scheduling");
|
||||
in = new RandomAccessFile(f, "r");
|
||||
while (true) {
|
||||
String packageName = in.readUTF();
|
||||
Slog.i(TAG, " + " + packageName);
|
||||
Slog.i(TAG, " " + packageName);
|
||||
dataChangedImpl(packageName);
|
||||
}
|
||||
} catch (EOFException e) {
|
||||
|
||||
Reference in New Issue
Block a user