1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-03-01 09:16:00 +00:00

Reduced logging

This commit is contained in:
M66B 2024-06-20 13:05:43 +02:00
parent 33a2e9e9ae
commit 7c7c6742f0

View file

@ -615,7 +615,8 @@ public class ContactInfo {
" " + info.bitmap.getWidth() + "x" + info.bitmap.getHeight() + " " + info.bitmap.getConfig() + " " + info.bitmap.getWidth() + "x" + info.bitmap.getHeight() + " " + info.bitmap.getConfig() +
" play=" + BuildConfig.PLAY_STORE_RELEASE + " play=" + BuildConfig.PLAY_STORE_RELEASE +
" cached=" + cached; " cached=" + cached;
Log.e(msg); if (!BuildConfig.DEBUG)
Log.e(msg);
EntityLog.log(context, EntityLog.Type.Debug4, msg); EntityLog.log(context, EntityLog.Type.Debug4, msg);
} }
} }