mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-22 18:09:06 +01:00
LSdebug() : Added LSlog() call
This commit is contained in:
parent
1b8d363ccc
commit
938d672f65
1 changed files with 5 additions and 8 deletions
|
@ -219,16 +219,13 @@ function varDump($data) {
|
||||||
$GLOBALS['LSdebug_fields']=array();
|
$GLOBALS['LSdebug_fields']=array();
|
||||||
function LSdebug($data,$dump=false) {
|
function LSdebug($data,$dump=false) {
|
||||||
if ($dump) {
|
if ($dump) {
|
||||||
$GLOBALS['LSdebug_fields'][]=varDump($data);
|
$data=varDump($data);
|
||||||
}
|
}
|
||||||
else {
|
else if (!is_array($data) && !is_object($data)) {
|
||||||
if (is_array($data)||is_object($data)) {
|
$data="[$data]";
|
||||||
$GLOBALS['LSdebug_fields'][]=$data;
|
|
||||||
}
|
|
||||||
else {
|
|
||||||
$GLOBALS['LSdebug_fields'][]="[$data]";
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
$GLOBALS['LSdebug_fields'][]=$data;
|
||||||
|
LSlog('[DEBUG] '.$data);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue