Add the ability to increase log lifespan.

This commit is contained in:
Greyson Parrelli
2021-07-20 09:57:17 -04:00
parent 7419da7247
commit 0093e1d3eb
15 changed files with 254 additions and 126 deletions

View File

@@ -39,10 +39,8 @@ final class MobileCoinLogAdapter implements LogAdapter {
Log.w(tag, message, throwable);
break;
case ERROR:
Log.e(tag, message, throwable);
break;
case WTF:
Log.wtf(tag, message, throwable);
Log.e(tag, message, throwable);
break;
}
}