mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
50e56a0396
à la racine, quand on lance le serveur, on a le framadate tel qu'il est aujourd'hui en ajoutant sur l'url, on accède à la maquette interactive dans son état actuel
23 lines
536 B
PHP
23 lines
536 B
PHP
<?php
|
|
namespace Framadate\Services;
|
|
|
|
/**
|
|
* This service provides a standard way to log some informations.
|
|
*
|
|
* @package Framadate\Services
|
|
*/
|
|
class LogService {
|
|
function __construct() {
|
|
}
|
|
|
|
/**
|
|
* Log a message to the log file.
|
|
*
|
|
* @param $tag string A tag is used to quickly found a message when reading log file
|
|
* @param $message string some message
|
|
*/
|
|
function log($tag, $message) {
|
|
error_log(date('Ymd His') . ' [' . $tag . '] ' . $message . "\n", 3, ROOT_DIR . LOG_FILE);
|
|
}
|
|
}
|
|
|