mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 07:29:08 -05:00
📎 Add minor logging improvements on worker module
This commit is contained in:
parent
c3a0db2431
commit
25001e5b80
3 changed files with 7 additions and 5 deletions
|
@ -119,11 +119,13 @@
|
|||
:next.jdbc/update-count))]
|
||||
(l/trc :hint "submit task"
|
||||
:name task
|
||||
:task-id (str id)
|
||||
:queue queue
|
||||
:label label
|
||||
:dedupe (boolean dedupe)
|
||||
:deleted (or deleted 0)
|
||||
:in (dt/format-duration duration))
|
||||
:delay (dt/format-duration duration)
|
||||
:replace (or deleted 0))
|
||||
|
||||
|
||||
(db/exec-one! conn [sql:insert-new-task id task props queue
|
||||
label priority max-retries interval])
|
||||
|
|
|
@ -92,7 +92,7 @@
|
|||
(let [ts (ms-until-valid cron)
|
||||
ft (px/schedule! ts (partial execute-cron-task cfg task))]
|
||||
|
||||
(l/dbg :hint "schedule task" :id id
|
||||
(l/dbg :hint "schedule" :id id
|
||||
:ts (dt/format-duration ts)
|
||||
:at (dt/format-instant (dt/in-future ts)))
|
||||
|
||||
|
|
|
@ -139,7 +139,7 @@
|
|||
|
||||
:else
|
||||
(try
|
||||
(l/trc :hint "start task"
|
||||
(l/trc :hint "start"
|
||||
:name (:name task)
|
||||
:task-id (str task-id)
|
||||
:queue queue
|
||||
|
@ -149,7 +149,7 @@
|
|||
result (handle-task task)
|
||||
elapsed (dt/format-duration (tpoint))]
|
||||
|
||||
(l/trc :hint "end task"
|
||||
(l/trc :hint "end"
|
||||
:name (:name task)
|
||||
:task-id (str task-id)
|
||||
:queue queue
|
||||
|
|
Loading…
Add table
Reference in a new issue