It would be _really_ nice if a function could be provided to `conman/bind-connection` that would wrap database-touching functions. Something like ``` clojure (conman/bind-connection *db* {:wrapper-func log-it} "sql/queries.sql") ``` where a theoretical `create-user!` call would be defined as ``` clojure (defn create-user! [map] (REAL-create-user (log-it map))) ``` or something to that effect.