We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b62d861 + 9780732 commit a0c0ca4Copy full SHA for a0c0ca4
src/Logger/log.class.php
@@ -73,7 +73,7 @@ protected function getBacktrace($ignore = 2)
73
$item = var_export($item, true);
74
});
75
76
- $trace .= '#' . ($k - $ignore) . ' ' . $v['file'] . '(' . $v['line'] . '): ' . (isset($v['class']) ? $v['class'] . '->' : '') . $v['function'] . '(' . implode(', ', $v['args']) . ')' . "\n";
+ $trace .= '#' . ($k - $ignore) . ' ' . $v['file'] . '(' . $v['line'] . '): ' . (isset($v['class']) ? $v['class'] . '->' : '') . $v['function'] . '(' . implode(', ', $v['args']) . ')';
77
}
78
79
return addslashes($trace);
0 commit comments