logging methods
This commit is contained in:
parent
1e641f69c6
commit
296fb77028
@ -34,20 +34,14 @@ require_once ManiaControlDir . 'core' . DIRECTORY_SEPARATOR . 'AutoLoader.php';
|
|||||||
\ManiaControl\Logger::setup();
|
\ManiaControl\Logger::setup();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Log and echo the given text
|
* @deprecated
|
||||||
*
|
* @see \ManiaControl\Logger::log()
|
||||||
* @param string $message
|
|
||||||
* @param bool $eol
|
|
||||||
*/
|
*/
|
||||||
function logMessage($message, $eol = true) {
|
function logMessage($message, $eol = true) {
|
||||||
error_log($message);
|
\ManiaControl\Logger::log($message, $eol);
|
||||||
if ($eol) {
|
|
||||||
$message = '[' . date('d-M-Y H:i:s e') . '] ' . $message . PHP_EOL;
|
|
||||||
}
|
|
||||||
echo $message;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
logMessage('Starting ManiaControl...');
|
\ManiaControl\Logger::log('Starting ManiaControl...');
|
||||||
|
|
||||||
// Check requirements
|
// Check requirements
|
||||||
\ManiaControl\Utils\SystemUtil::checkRequirements();
|
\ManiaControl\Utils\SystemUtil::checkRequirements();
|
||||||
|
@ -29,4 +29,43 @@ class Logger {
|
|||||||
$logFileName .= '.log';
|
$logFileName .= '.log';
|
||||||
ini_set('error_log', $logFileName);
|
ini_set('error_log', $logFileName);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log and echo the given Error Message
|
||||||
|
*
|
||||||
|
* @param string $message
|
||||||
|
* @param bool $eol
|
||||||
|
* @param bool $output
|
||||||
|
*/
|
||||||
|
public static function logError($message, $eol = true, $output = true) {
|
||||||
|
$message = '[ERROR] ' . $message;
|
||||||
|
self::log($message, $eol, $output);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Log and output the given Message
|
||||||
|
*
|
||||||
|
* @param string $message
|
||||||
|
* @param bool $eol
|
||||||
|
* @param bool $output
|
||||||
|
*/
|
||||||
|
public static function log($message, $eol = true, $output = true) {
|
||||||
|
error_log($message);
|
||||||
|
if ($output) {
|
||||||
|
self::output($message, $eol);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Echo the given Message
|
||||||
|
*
|
||||||
|
* @param string $message
|
||||||
|
* @param bool $eol
|
||||||
|
*/
|
||||||
|
public static function output($message, $eol = true) {
|
||||||
|
if ($eol) {
|
||||||
|
$message = '[' . date('d-M-Y H:i:s e') . '] ' . $message . PHP_EOL;
|
||||||
|
}
|
||||||
|
echo $message;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user