Merge pull request #644 from letsencrypt/sql_logger_cleanup

correct the SQLLogger Printf
This commit is contained in:
Jacob Hoffman-Andrews 2015-08-20 18:47:27 -07:00
commit 56cbe1cc94
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ type SQLLogger struct {
// Printf adapts the AuditLogger to GORP's interface
func (log *SQLLogger) Printf(format string, v ...interface{}) {
log.log.Debug(fmt.Sprintf(format, v))
log.log.Debug(fmt.Sprintf(format, v...))
}
// initTables constructs the table map for the ORM. If you want to also create