Reduced logging

This commit is contained in:
M66B
2025-04-22 15:04:52 +02:00
parent 9042a26bdf
commit 17809acd7d
4 changed files with 19 additions and 4 deletions

View File

@@ -5639,7 +5639,10 @@ public class MessageHelper {
return count;
} catch (Throwable ex) {
Log.e(ex);
if (BuildConfig.PLAY_STORE_RELEASE)
Log.i(ex);
else
Log.e(ex);
return -1;
}
}