Merge "Ensure dropbox could copy tombstone files to special folder." am: 12cdea59d3

am: 3034085dff

Change-Id: I66b4ff2459d95dcb7555d1654dbcc3340a9d9155
This commit is contained in:
Jinguang Dong
2018-07-19 16:01:49 -07:00
committed by android-build-merger

View File

@@ -258,13 +258,13 @@ public class BootReceiver extends BroadcastReceiver {
// Start watching for new tombstone files; will record them as they occur.
// This gets registered with the singleton file observer thread.
sTombstoneObserver = new FileObserver(TOMBSTONE_DIR.getPath(), FileObserver.CLOSE_WRITE) {
sTombstoneObserver = new FileObserver(TOMBSTONE_DIR.getPath(), FileObserver.CREATE) {
@Override
public void onEvent(int event, String path) {
HashMap<String, Long> timestamps = readTimestamps();
try {
File file = new File(TOMBSTONE_DIR, path);
if (file.isFile()) {
if (file.isFile() && file.getName().startsWith("tombstone_")) {
addFileToDropBox(db, timestamps, headers, file.getPath(), LOG_SIZE,
TAG_TOMBSTONE);
}