Skip to content

Commit

Permalink
Fix log write
Browse files Browse the repository at this point in the history
  • Loading branch information
felixrupp committed Dec 14, 2017
1 parent 547d55e commit d126045
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/UserService.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public function login($request, $uid, $password = '')

if (!boolval($this->config->getAppValue($this->appName, 'cas_autocreate')) && !$this->userExists($uid)) {

$this->loggingService->write(\OCP\Util::DEBUG, 'phpCas autocreate disabled, and OC User does not exist, phpCas based login not possible. Bye.');
\OCP\Util::writeLog('cas', 'phpCas autocreate disabled, and OC User does not exist, phpCas based login not possible. Bye.', \OCP\Util::DEBUG);

return FALSE;
}
Expand Down

0 comments on commit d126045

Please sign in to comment.