Add error field to logger on rows close

pull/761/head
Igor V. Kozinov 2020-05-27 14:44:53 +06:00
parent 9e1a67c1bc
commit 4043edafe7
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ func (rows *connRows) Close() {
rows.logger.log(rows.ctx, LogLevelInfo, "Query", map[string]interface{}{"sql": rows.sql, "args": logQueryArgs(rows.args), "time": endTime.Sub(rows.startTime), "rowCount": rows.rowCount})
}
} else if rows.logger.shouldLog(LogLevelError) {
rows.logger.log(rows.ctx, LogLevelError, "Query", map[string]interface{}{"sql": rows.sql, "args": logQueryArgs(rows.args)})
rows.logger.log(rows.ctx, LogLevelError, "Query", map[string]interface{}{"err": rows.err, "sql": rows.sql, "args": logQueryArgs(rows.args)})
}
}
}