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();
|
||||
function LSdebug($data,$dump=false) {
|
||||
if ($dump) {
|
||||
$GLOBALS['LSdebug_fields'][]=varDump($data);
|
||||
$data=varDump($data);
|
||||
}
|
||||
else if (!is_array($data) && !is_object($data)) {
|
||||
$data="[$data]";
|
||||
}
|
||||
else {
|
||||
if (is_array($data)||is_object($data)) {
|
||||
$GLOBALS['LSdebug_fields'][]=$data;
|
||||
}
|
||||
else {
|
||||
$GLOBALS['LSdebug_fields'][]="[$data]";
|
||||
}
|
||||
}
|
||||
LSlog('[DEBUG] '.$data);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue