本文整理匯總了PHP中OCP\ILogger::warn方法的典型用法代碼示例。如果您正苦於以下問題:PHP ILogger::warn方法的具體用法?PHP ILogger::warn怎麽用?PHP ILogger::warn使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類OCP\ILogger
的用法示例。
在下文中一共展示了ILogger::warn方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: testSettings
/**
* @NoAdminRequired
* @NoCSRFRequired
*
* @param string $username
* @param string $password
* @return JsonResponse
*/
public function testSettings($username, $password)
{
$xmlrpc = new XmlRpc($username, $password);
try {
$serverInfo = $xmlrpc->serverInfo();
} catch (HttpException $exception) {
if ($exception->getCode() === Http::STATUS_UNAUTHORIZED) {
$this->logger->info('Settings test failed (unauthorized)', ['app' => $this->appName]);
return new JSONResponse(['success' => false, 'error' => 'Authorization failed'], Http::STATUS_UNAUTHORIZED);
} else {
$this->logger->warn(sprintf('Settings test failed (%d: %s)', $exception->getCode(), $exception->getMessage()), ['app' => $this->appName]);
return new JSONResponse(['success' => false, 'error' => $exception->getMessage()], Http::STATUS_BAD_GATEWAY);
}
} catch (\Exception $exception) {
$this->logger->error(sprintf('Settings test failed with exception (%s)', $exception->getMessage()), ['app' => $this->appName]);
return new JSONResponse(['success' => false, 'error' => $exception->getMessage()], Http::STATUS_INTERNAL_SERVER_ERROR);
}
$this->logger->info('Settings test successful', ['app' => $this->appName]);
return new JSONResponse(['success' => true, 'serverInfo' => $serverInfo->toJSON()]);
}