File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
OneSignalSDK/onesignal/core/src/main/java/com/onesignal/core/internal/operations/impl Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,11 @@ internal class OperationRepo(
26
26
val operation : Operation ,
27
27
val waiter : WaiterWithValue <Boolean >? = null ,
28
28
var retries : Int = 0 ,
29
- )
29
+ ) {
30
+ override fun toString (): String {
31
+ return Pair (operation.toString(), retries).toString() + " \n "
32
+ }
33
+ }
30
34
31
35
private val executorsMap: Map <String , IOperationExecutor >
32
36
private val queue = mutableListOf<OperationQueueItem >()
@@ -105,7 +109,7 @@ internal class OperationRepo(
105
109
}
106
110
107
111
val ops = getNextOps()
108
- Logging .debug(" processQueueForever:ops:$ops " )
112
+ Logging .debug(" processQueueForever:ops:\n $ops " )
109
113
110
114
if (ops != null ) {
111
115
executeOperations(ops)
You can’t perform that action at this time.
0 commit comments