Further modules included.
[yaffs-website] / web / modules / contrib / drupalmoduleupgrader / templates / Logger.html.twig
diff --git a/web/modules/contrib/drupalmoduleupgrader/templates/Logger.html.twig b/web/modules/contrib/drupalmoduleupgrader/templates/Logger.html.twig
new file mode 100644 (file)
index 0000000..34af48f
--- /dev/null
@@ -0,0 +1,25 @@
+/**
+ * @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 = array()) {
+    /**
+     * @FIXME
+     * Port your hook_watchdog() logic here.
+     */
+  }
+
+}