first work on feed updater + pinger
[stapibas.git] / src / stapibas / Logger.php
diff --git a/src/stapibas/Logger.php b/src/stapibas/Logger.php
new file mode 100644 (file)
index 0000000..9068609
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+namespace stapibas;
+
+class Logger
+{
+    public function info($msg)
+    {
+        $this->log($msg);
+    }
+
+    public function log($msg)
+    {
+        echo $msg . "\n";
+    }
+}
+
+?>