]> git.immae.eu Git - github/shaarli/Shaarli.git/blobdiff - application/Utils.php
Logging: move logm() from index.php to application/Utils.php
[github/shaarli/Shaarli.git] / application / Utils.php
index aeaef9ff143a84e67f16bb99365fcdbd70680608..a9a10ece572a02e36c151931c719be739894faaa 100644 (file)
@@ -3,6 +3,19 @@
  * Shaarli utilities
  */
 
+/**
+ * Logs a message to a text file
+ *
+ * @param string $logFile  where to write the logs
+ * @param string $clientIp the client's remote IPv4/IPv6 address
+ * @param string $message  the message to log
+ */
+function logm($logFile, $clientIp, $message)
+{
+    $line = strval(date('Y/m/d_H:i:s')).' - '.$clientIp.' - '.strval($message).'\n';
+    file_put_contents($logFile, $line, FILE_APPEND);
+}
+
 /**
  *  Returns the small hash of a string, using RFC 4648 base64url format
  *