Skip to content

Commit

Permalink
refactor: increase log message max size
Browse files Browse the repository at this point in the history
  • Loading branch information
becem-gharbi committed May 23, 2024
1 parent 0c21f30 commit 1d9a41a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ESPAdmin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace ESPAdmin
options.resetDelayMs = DEFAULT_INT(options.resetDelayMs, 7000);
options.httpMaxResponseSize = DEFAULT_INT(options.httpMaxResponseSize, 300);
options.httpTimeoutMs = DEFAULT_INT(options.httpTimeoutMs, 8000);
options.logMaxMessageSize = DEFAULT_INT(options.logMaxMessageSize, 100);
options.logMaxMessageSize = DEFAULT_INT(options.logMaxMessageSize, 200);
options.mqttTaskPriority = DEFAULT_INT(options.mqttTaskPriority, 5);
options.mqttTaskStackSize = DEFAULT_INT(options.mqttTaskStackSize, 6896); // StackHighWaterMark = 4848 bytes
options.mqttKeepAliveSec = DEFAULT_INT(options.mqttKeepAliveSec, 30);
Expand Down

0 comments on commit 1d9a41a

Please sign in to comment.