for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Client\FactFinderSdk\Business\Log;
use Spryker\Shared\Log\Config\LoggerConfigInterface;
class LoggerConfig implements LoggerConfigInterface
{
* @return string
public function getChannelName()
return 'FactFinderLogger';
}
* @return \Monolog\Handler\HandlerInterface[]
public function getHandlers()
return [
new LogHandler(new PaymentLogger()),
];
* @return array
public function getProcessors()
return [];