Skip to content

Commit ae8a36a

Browse files
authored
server: reduce size of slow read/write log (#1074)
* server: reduce size of slow read/write log * bump limit to 512
1 parent bb8058b commit ae8a36a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libsql-server/src/connection/libsql.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +929,7 @@ impl<W: Wal> Connection<W> {
929929
"high read ({}) or write ({}) query: {}",
930930
rows_read,
931931
rows_written,
932-
sql
932+
&sql[..512]
933933
);
934934
}
935935

0 commit comments

Comments
 (0)