Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / templates / Logger.html.twig
1 /**
2  * @file
3  * Contains \Drupal\{{ module }}\Logger\DefaultLogger.
4  */
5
6 namespace Drupal\{{ module }}\Logger;
7
8 use Psr\Log\LoggerInterface;
9 use Psr\Log\LoggerTrait;
10
11 class DefaultLogger implements LoggerInterface {
12
13   use LoggerTrait;
14
15   /**
16    * {@inheritdoc}
17    */
18   public function log($level, $message, array $context = array()) {
19     /**
20      * @FIXME
21      * Port your hook_watchdog() logic here.
22      */
23   }
24
25 }