import-log: add output to logcat (for debugging)

This commit is contained in:
Vincent Breitmoser
2014-06-06 17:28:36 +02:00
parent e083ccc370
commit 118225d7d2
3 changed files with 19 additions and 8 deletions

View File

@@ -79,6 +79,13 @@ public class ProviderHelper {
mIndent = indent;
}
public void resetLog() {
if(mLog != null) {
mLog.clear();
mIndent = 0;
}
}
public static class NotFoundException extends Exception {
public NotFoundException() {
}