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.
2 parents f0cddbb + 2985a32 commit 022a752Copy full SHA for 022a752
src/Loggable/FileChannel/MonologFormatter.php
@@ -31,7 +31,7 @@ protected function convertToString($data)
31
return parent::convertToString($data);
32
}
33
34
- protected function normalize($data)
+ protected function normalize($data, $depth = 0)
35
{
36
if (is_array($data) || ($data instanceof Traversable)) {
37
$normalized = [];
@@ -41,6 +41,6 @@ protected function normalize($data)
41
return $normalized;
42
43
44
- return parent::normalize($data);
+ return parent::normalize($data, $depth);
45
46
0 commit comments