launchbadge/sqlx

Log queries including bind arguments and execution time

Open

#162 创建于 2020年3月26日

在 GitHub 查看
 (9 评论) (0 反应) (0 负责人)Rust (13,916 star) (1,307 fork)batch import
enhancementhelp wanted

描述

TRACE sqlx::query > SELECT …, elapsed: 0.04ms

    SELECT foo, bar, baz
    FROM this_table_over_here
    WHERE foo = $1 AND bar = $2
    ORDER BY baz

    $1 = 50
    $2 = 694

TRACE sqlx::query > INSERT INTO table_name …, elapsed: 12.04ms

Log format is very "let's figure out what we think looks best". Use log. We should new line + indent like error stack traces for the query body. Not sure how to nicely show the bind arguments.

贡献者指南

Log queries including bind arguments and execution time · launchbadge/sqlx#162 | Good First Issue