fix log statement

This commit is contained in:
Martin Klepsch 2018-04-26 12:06:51 +02:00
parent 81cd3c54a6
commit bf1776e0f6
No known key found for this signature in database
GPG Key ID: 1A35E702AD48A9F6
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@
(defn update-issue-title
[issue-id title]
(log/info "issue %s: Updating changed title \"%s\"" issue-id title)
(log/infof "issue %s: Updating changed title \"%s\"" issue-id title)
(jdbc/with-db-connection [con-db *db*]
(db/update-issue-title con-db {:issue_id issue-id
:title title})))