diff options
author | metamuffin <metamuffin@disroot.org> | 2024-01-20 12:13:20 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2024-01-20 12:13:20 +0100 |
commit | 730353601db9818d148c85bfe1ecb119abaab7cc (patch) | |
tree | 0e3deafdac53ebc612a04b3631e5cf286c825291 /server/src/routes/ui/admin | |
parent | 3086e768ab4e64e47a50d7f6a71a815c4f110bd3 (diff) | |
download | jellything-730353601db9818d148c85bfe1ecb119abaab7cc.tar jellything-730353601db9818d148c85bfe1ecb119abaab7cc.tar.bz2 jellything-730353601db9818d148c85bfe1ecb119abaab7cc.tar.zst |
cleanup yesterdays mess
Diffstat (limited to 'server/src/routes/ui/admin')
-rw-r--r-- | server/src/routes/ui/admin/log.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/routes/ui/admin/log.rs b/server/src/routes/ui/admin/log.rs index de91acd..9e57bab 100644 --- a/server/src/routes/ui/admin/log.rs +++ b/server/src/routes/ui/admin/log.rs @@ -20,7 +20,7 @@ use std::{ sync::{LazyLock, RwLock}, }; -const MAX_LOG_LEN: usize = 4000; +const MAX_LOG_LEN: usize = 4096; static LOGGER: LazyLock<Log> = LazyLock::new(Log::new); |