Improve log injection example

pull/42/head v1.9.0
Vinícius Garcia 2023-07-16 22:16:54 -03:00
parent 22a26aeb18
commit ecd2ea45aa
1 changed files with 4 additions and 0 deletions

View File

@ -94,4 +94,8 @@ func main() {
if err != nil {
panic(err.Error())
}
// Here we are provoking an error, so we can see an error on the log:
_ = db.QueryOne(ctx, &alison, "not a valid query", "someFakeParams")
// This logs: {"query":"not a valid query","params":["someFakeParams"],"error":"error running query: near \"not\": syntax error"}
}