소스 검색

[cron] log fix

Innocenty Enikeev 8 년 전
부모
커밋
f9435a710c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      chat-cron.lisp

+ 1 - 1
chat-cron.lisp

@@ -37,7 +37,7 @@
        when (and next-time (<= (same-time-in-chat next-time chat-id) now))
        do (unwind-protect
                (progn
-                 (log:info :chat-cron type chat-id schedule now next-time last-run)
+                 (log:info :chat-cron type chat-id schedule-text now next-time last-run)
                  (apply #'run-hooks :chat-cron (keyify type) chat-id schedule (read-from-string args)))
             (db-execute "update chat_crons set last_run = ? where type = ? and chat_id = ? and schedule = ? and args = ?" next-time type chat-id schedule-text args)))))