From 49cccc69279bec61d3368f52dfbe03e3856f783d Mon Sep 17 00:00:00 2001 From: Greyson Parrelli Date: Sun, 28 Apr 2019 11:43:03 -0700 Subject: [PATCH] Update job logging. --- .../securesms/jobmanager/persistence/JobSpec.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/thoughtcrime/securesms/jobmanager/persistence/JobSpec.java b/src/org/thoughtcrime/securesms/jobmanager/persistence/JobSpec.java index e8a72ae45e..d73fa8cfb7 100644 --- a/src/org/thoughtcrime/securesms/jobmanager/persistence/JobSpec.java +++ b/src/org/thoughtcrime/securesms/jobmanager/persistence/JobSpec.java @@ -123,7 +123,7 @@ public final class JobSpec { @SuppressLint("DefaultLocale") @Override public @NonNull String toString() { - return String.format("id: %s | factoryKey: %s | queueKey: %s | createTime: %d | nextRunAttemptTime: %d | maxAttempts: %d | maxBackoff: %d | maxInstances: %d | lifespan: %d | isRunning: %b | data: %s", - id, factoryKey, queueKey, createTime, nextRunAttemptTime, maxAttempts, maxBackoff, maxInstances, lifespan, isRunning, serializedData); + return String.format("id: %s | factoryKey: %s | queueKey: %s | createTime: %d | nextRunAttemptTime: %d | runAttempt: %d | maxAttempts: %d | maxBackoff: %d | maxInstances: %d | lifespan: %d | isRunning: %b | data: %s", + id, factoryKey, queueKey, createTime, nextRunAttemptTime, runAttempt, maxAttempts, maxBackoff, maxInstances, lifespan, isRunning, serializedData); } }