mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-23 02:10:44 +01:00
Reduce log noise.
This commit is contained in:
@@ -413,7 +413,7 @@ public class DefaultMessageNotifier implements MessageNotifier {
|
||||
|
||||
Notification notification = builder.build();
|
||||
NotificationManagerCompat.from(context).notify(notificationId, notification);
|
||||
Log.i(TAG, "Posted notification. " + notification.toString());
|
||||
Log.i(TAG, "Posted notification.");
|
||||
}
|
||||
|
||||
private static void sendMultipleThreadNotification(@NonNull Context context,
|
||||
|
||||
@@ -112,14 +112,17 @@ public class NotificationState {
|
||||
}
|
||||
|
||||
public PendingIntent getMarkAsReadIntent(Context context, int notificationId) {
|
||||
long[] threadArray = new long[threads.size()];
|
||||
int index = 0;
|
||||
long[] threadArray = new long[threads.size()];
|
||||
int index = 0;
|
||||
StringBuilder threadString = new StringBuilder();
|
||||
|
||||
for (long thread : threads) {
|
||||
Log.i(TAG, "Added thread: " + thread);
|
||||
threadString.append(thread).append(" ");
|
||||
threadArray[index++] = thread;
|
||||
}
|
||||
|
||||
Log.i(TAG, "Added threads: " + threadString.toString());
|
||||
|
||||
Intent intent = new Intent(MarkReadReceiver.CLEAR_ACTION);
|
||||
intent.setClass(context, MarkReadReceiver.class);
|
||||
intent.setData((Uri.parse("custom://"+System.currentTimeMillis())));
|
||||
|
||||
Reference in New Issue
Block a user