Reduced logging

This commit is contained in:
M66B
2019-12-07 17:02:42 +01:00
parent 2591dc9011
commit 22df24d91b
34 changed files with 143 additions and 144 deletions

View File

@@ -3833,10 +3833,13 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
private BroadcastReceiver creceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
Log.i("Received " + intent);
Log.logExtras(intent);
String action = intent.getAction();
if (!SimpleTask.ACTION_TASK_COUNT.equals(action)) {
Log.i("Received " + intent);
Log.logExtras(intent);
}
if (SimpleTask.ACTION_TASK_COUNT.equals(action))
onTaskCount(intent);
else if (ACTION_NEW_MESSAGE.equals(action))