mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-29 00:24:51 +09:00
Fix missing logs of fixRunningDeliveries
This commit is contained in:
parent
d5063eaef9
commit
9f063fb349
1 changed files with 3 additions and 3 deletions
|
@ -350,13 +350,13 @@ fixRunningDeliveries = do
|
|||
c' <- updateWhereCount [DeliveryRunning ==. True] [DeliveryRunning =. False]
|
||||
unless (c' == 0) $ logWarn $ T.concat
|
||||
[ "fixRunningDeliveries fixed "
|
||||
, T.pack (show c)
|
||||
, T.pack (show c')
|
||||
, " unlinked deliveries"
|
||||
]
|
||||
c'' <- updateWhereCount [ForwardingRunning ==. True] [ForwardingRunning =. False]
|
||||
unless (c' == 0) $ logWarn $ T.concat
|
||||
unless (c'' == 0) $ logWarn $ T.concat
|
||||
[ "fixRunningDeliveries fixed "
|
||||
, T.pack (show c)
|
||||
, T.pack (show c'')
|
||||
, " forwarding deliveries"
|
||||
]
|
||||
|
||||
|
|
Loading…
Reference in a new issue