drupalmoduleupgrader-8.x-1.5/templates/Logger.html.twig
templates/Logger.html.twig
/**
* @file
* Contains \Drupal\{{ module }}\Logger\DefaultLogger.
*/
namespace Drupal\{{ module }}\Logger;
use Psr\Log\LoggerInterface;
use Psr\Log\LoggerTrait;
class DefaultLogger implements LoggerInterface {
use LoggerTrait;
/**
* {@inheritdoc}
*/
public function log($level, $message, array $context = []) {
/**
* @FIXME
* Port your hook_watchdog() logic here.
*/
}
}
