aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-08-09 11:34:56 +0200
committerChocobozzz <me@florianbigard.com>2022-08-09 11:34:56 +0200
commitcfb5edbd9e666b93d9680a34df59096d23d51bd5 (patch)
treefc16cccc41c3466b85ea590207497c7298e8c6c8
parentc543e414923aeefea73f96eae7d6d816f8887823 (diff)
downloadPeerTube-cfb5edbd9e666b93d9680a34df59096d23d51bd5.tar.gz
PeerTube-cfb5edbd9e666b93d9680a34df59096d23d51bd5.tar.zst
PeerTube-cfb5edbd9e666b93d9680a34df59096d23d51bd5.zip
Increase logs stack trace max size
-rw-r--r--server/initializers/constants.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts
index a53c22662..5a5f2d666 100644
--- a/server/initializers/constants.ts
+++ b/server/initializers/constants.ts
@@ -375,7 +375,7 @@ const CONSTRAINTS_FIELDS = {
375 }, 375 },
376 LOGS: { 376 LOGS: {
377 CLIENT_MESSAGE: { min: 1, max: 1000 }, // Length 377 CLIENT_MESSAGE: { min: 1, max: 1000 }, // Length
378 CLIENT_STACK_TRACE: { min: 1, max: 5000 }, // Length 378 CLIENT_STACK_TRACE: { min: 1, max: 15000 }, // Length
379 CLIENT_META: { min: 1, max: 5000 }, // Length 379 CLIENT_META: { min: 1, max: 5000 }, // Length
380 CLIENT_USER_AGENT: { min: 1, max: 200 } // Length 380 CLIENT_USER_AGENT: { min: 1, max: 200 } // Length
381 } 381 }