added FileLine to error report
This commit is contained in:
parent
34390f9f12
commit
43a1cd99b0
@ -22,8 +22,8 @@ if (function_exists('date_default_timezone_get') && function_exists('date_defaul
|
|||||||
|
|
||||||
// Build log file name
|
// Build log file name
|
||||||
$logFileName = ManiaControlDir . 'logs' . DIRECTORY_SEPARATOR;
|
$logFileName = ManiaControlDir . 'logs' . DIRECTORY_SEPARATOR;
|
||||||
if (!is_dir($logFileName)) {
|
if (!is_dir($logFileName) && !mkdir($logFileName)) {
|
||||||
mkdir($logFileName);
|
echo "Couldn't create Logs Folder, please check the File Permissions!";
|
||||||
}
|
}
|
||||||
$logFileName .= 'ManiaControl';
|
$logFileName .= 'ManiaControl';
|
||||||
if (LOG_NAME_USE_DATE) {
|
if (LOG_NAME_USE_DATE) {
|
||||||
@ -105,7 +105,7 @@ spl_autoload_register(function ($className) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Plugin file
|
// Plugin file
|
||||||
$filePath = ManiaControlDir . 'plugins'.DIRECTORY_SEPARATOR . $classPath . '.php';
|
$filePath = ManiaControlDir . 'plugins' . DIRECTORY_SEPARATOR . $classPath . '.php';
|
||||||
if (file_exists($filePath)) {
|
if (file_exists($filePath)) {
|
||||||
require_once $filePath;
|
require_once $filePath;
|
||||||
return;
|
return;
|
||||||
|
@ -136,7 +136,7 @@ class ErrorHandler {
|
|||||||
$message = $errorTag . ': ' . $errorString;
|
$message = $errorTag . ': ' . $errorString;
|
||||||
$fileLine = $errorFile . ': ' . $errorLine;
|
$fileLine = $errorFile . ': ' . $errorLine;
|
||||||
$traceMessage = $this->parseBackTrace(debug_backtrace());
|
$traceMessage = $this->parseBackTrace(debug_backtrace());
|
||||||
$logMessage = $message . PHP_EOL . ($userError ? $fileLine : $traceMessage);
|
$logMessage = $message . PHP_EOL . $fileLine . PHP_EOL . $traceMessage;
|
||||||
logMessage($logMessage);
|
logMessage($logMessage);
|
||||||
|
|
||||||
if ($this->reportErrors && !$userError) {
|
if ($this->reportErrors && !$userError) {
|
||||||
|
Loading…
Reference in New Issue
Block a user