Skip to content

Commit

Permalink
server: reduce size of slow read/write log (#1074)
Browse files Browse the repository at this point in the history
* server: reduce size of slow read/write log

* bump limit to 512
  • Loading branch information
LucioFranco authored Feb 22, 2024
1 parent bb8058b commit ae8a36a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libsql-server/src/connection/libsql.rs
Original file line number Diff line number Diff line change
Expand Up @@ -929,7 +929,7 @@ impl<W: Wal> Connection<W> {
"high read ({}) or write ({}) query: {}",
rows_read,
rows_written,
sql
&sql[..512]
);
}

Expand Down

0 comments on commit ae8a36a

Please sign in to comment.