docs
[plcapi.git] / src / Helper / Logger.php
index 56f633d..b022311 100644 (file)
@@ -2,6 +2,9 @@
 
 namespace PhpXmlRpc\Helper;
 
+/**
+ * @todo make constructor private to force users to go through `instance()`
+ */
 class Logger
 {
     protected static $instance = null;
@@ -56,4 +59,13 @@ class Logger
         // let the user see this now in case there's a time out later...
         flush();
     }
+
+    /**
+     * Writes a message to the error log
+     * @param string $message
+     */
+    public function errorLog($message)
+    {
+        error_log($message);
+    }
 }