1
0

Debug serveur stats\nDebug

This commit is contained in:
2022-05-05 21:28:26 +02:00
parent d1f1065e44
commit 68fb0579ce
11 changed files with 159 additions and 124 deletions

View File

@ -2,4 +2,14 @@
$varPath = "/usr/share/moha/";
$mohaPath = "/home/daniel/moha";
$configPath = "/etc/moha/";
function logger($level, $log, $pos = "")
{
global $logLevel;
if ($level & $logLevel)
{
print ("MOHA-" . $level . $log .$pos . EOL);
}
}
?>