added FileLine to error report

This commit is contained in:
Steffen Schröder 2014-05-03 22:54:42 +02:00
parent 34390f9f12
commit 43a1cd99b0
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@ if (function_exists('date_default_timezone_get') && function_exists('date_defaul
// Build log file name
$logFileName = ManiaControlDir . 'logs' . DIRECTORY_SEPARATOR;
if (!is_dir($logFileName)) {
mkdir($logFileName);
if (!is_dir($logFileName) && !mkdir($logFileName)) {
echo "Couldn't create Logs Folder, please check the File Permissions!";
}
$logFileName .= 'ManiaControl';
if (LOG_NAME_USE_DATE) {
@ -105,7 +105,7 @@ spl_autoload_register(function ($className) {
}
// Plugin file
$filePath = ManiaControlDir . 'plugins'.DIRECTORY_SEPARATOR . $classPath . '.php';
$filePath = ManiaControlDir . 'plugins' . DIRECTORY_SEPARATOR . $classPath . '.php';
if (file_exists($filePath)) {
require_once $filePath;
return;

View File

@ -136,7 +136,7 @@ class ErrorHandler {
$message = $errorTag . ': ' . $errorString;
$fileLine = $errorFile . ': ' . $errorLine;
$traceMessage = $this->parseBackTrace(debug_backtrace());
$logMessage = $message . PHP_EOL . ($userError ? $fileLine : $traceMessage);
$logMessage = $message . PHP_EOL . $fileLine . PHP_EOL . $traceMessage;
logMessage($logMessage);
if ($this->reportErrors && !$userError) {