Fix log truncation

pull/37/head
Jack Christensen 2014-09-15 14:27:28 -05:00
parent b21a653085
commit 92cbc6566d
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ func (l *connLogger) Error(msg string, ctx ...interface{}) {
l.logger.Error(msg, ctx...)
}
func logQueryArgs(args ...interface{}) []interface{} {
func logQueryArgs(args []interface{}) []interface{} {
logArgs := make([]interface{}, 0, len(args))
for _, a := range args {