We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a6f714 commit c8b0d08Copy full SHA for c8b0d08
src/Monolog/Handler/ChromePHPHandler.php
@@ -43,7 +43,7 @@ class ChromePHPHandler extends AbstractProcessingHandler
43
/**
44
* Tracks whether we sent too much data
45
*
46
- * Chrome limits the headers to 256KB, so when we sent 240KB we stop sending
+ * Chrome limits the headers to 4KB, so when we sent 3KB we stop sending
47
48
* @var bool
49
*/
@@ -136,7 +136,7 @@ protected function send()
136
137
$json = @json_encode(self::$json);
138
$data = base64_encode(utf8_encode($json));
139
- if (strlen($data) > 240 * 1024) {
+ if (strlen($data) > 3 * 1024) {
140
self::$overflowed = true;
141
142
$record = array(
0 commit comments