Explorar o código

Fix string interpolation of newline

Jordi Boggiano %!s(int64=2) %!d(string=hai) anos
pai
achega
70e1c2f405
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/Monolog/Formatter/LineFormatter.php

+ 1 - 1
src/Monolog/Formatter/LineFormatter.php

@@ -155,7 +155,7 @@ class LineFormatter extends NormalizerFormatter
             do {
                 $depth++;
                 if ($depth > $this->maxNormalizeDepth) {
-                    $str .= '\n[previous exception] Over ' . $this->maxNormalizeDepth . ' levels deep, aborting normalization';
+                    $str .= "\n[previous exception] Over " . $this->maxNormalizeDepth . ' levels deep, aborting normalization';
                     break;
                 }