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 7a7448f commit eb0908fCopy full SHA for eb0908f
templates/logger/Logger/Handler/HandlerAbstract.php
@@ -21,8 +21,9 @@ class HandlerAbstract extends Base
21
* @param DriverInterface $filesystem
22
* @param null|string $filePath
23
*/
24
- public function __construct(DriverInterface $filesystem, $filePath = BP . '/var/log/${loggerName}/') //@codingStandardsIgnoreLine
+ public function __construct(DriverInterface $filesystem, $filePath = 'var/log/${loggerName}/') //@codingStandardsIgnoreLine
25
{
26
+ $filePath = BP . DIRECTORY_SEPARATOR . $filePath;
27
parent::__construct($filesystem, $filePath);
28
}
29
0 commit comments