more debug output

This commit is contained in:
Roland Gruber 2013-12-22 12:24:15 +00:00
parent 5d862fff7c
commit 55af0e8a62
1 changed files with 2 additions and 0 deletions

View File

@ -1056,6 +1056,8 @@ class posixGroup extends baseModule implements passwordService {
for ($i = 0; $i < $resultCount; $i++) {
$this->cachedUserToGIDList[$result[$i]['uid'][0]] = array('gid' => $result[$i]['gidnumber'][0], 'cn' => $result[$i]['cn'][0]);
}
logNewMessage(LOG_DEBUG, 'Found ' . $resultCount . ' Unix users.');
logNewMessage(LOG_DEBUG, print_r($result, true));
return $this->cachedUserToGIDList;
}