Skip to content

Commit

Permalink
remove topic from a log statement (#162)
Browse files Browse the repository at this point in the history
Topics were removed in #137
  • Loading branch information
johnswanson authored Feb 7, 2024
1 parent c534658 commit a17635f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/toucan2/honeysql2.clj
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
(m/defmethod query/apply-kv-arg [#_model :default #_query clojure.lang.IPersistentMap #_k :default]
"Apply key-value args to a Honey SQL 2 query map."
[_model honeysql k v]
(log/debugf :compile "apply kv-arg %s %s" k v)
(log/debugf "apply kv-arg %s %s" k v)
(let [result (update honeysql :where (fn [existing-where]
(:where (hsql.helpers/where existing-where
(condition->honeysql-where-clause k v)))))]
Expand Down

0 comments on commit a17635f

Please sign in to comment.