当前位置: 首页>>代码示例>>PHP>>正文


PHP CakeLog::alert方法代码示例

本文整理汇总了PHP中CakeLog::alert方法的典型用法代码示例。如果您正苦于以下问题:PHP CakeLog::alert方法的具体用法?PHP CakeLog::alert怎么用?PHP CakeLog::alert使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CakeLog的用法示例。


在下文中一共展示了CakeLog::alert方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: index

 public function index()
 {
     //The Logging is for troubleshooting in case somebody needs the full error message
     $errorArray = array();
     $db = $this->AllPriv->getDataSource();
     if (empty($db->connection)) {
         //check for database connection, if there is none, get the error message
         $errorArray['database'] = "Error while accessing " . $db->config['database'] . ". Last error message: " . $db->lastError();
         CakeLog::alert($db->lastError());
     }
     $personSearch = $this->PersonDirectory->personDirectoryStatusCheck('gds2');
     if (is_string($personSearch)) {
         $db = $this->PersonDirectory->getDataSource();
         $errorArray['personDirectory'] = "Unable to access Person Directory Web Service at " . $db->config['uri']['host'] . ". Error message: " . $personSearch;
         CakeLog::alert($personSearch);
     }
     $webService = $this->Status->ratingsWsTest();
     if ($webService !== true) {
         $db = $this->Status->getDataSource();
         $errorArray['webService'] = "Unable to access Ratings Web Services at " . $db->config['uri']['host'] . ". Error message: " . $webService;
         CakeLog::alert($webService);
     }
     $controlDates = $this->ControlDate->controlDateStatusCheck();
     if (is_string($controlDates)) {
         $errorArray['controlDates'] = "Unable to access Control Dates Web Service at " . $db->config['uri']['host'] . ". Error message: " . $controlDates;
         CakeLog::alert($controlDates);
     }
     $systemMetrics = array('Id' => "NewStudentRatings", 'DisplayName' => "New Student Ratings System", 'Url' => "https://ratings.byu.edu/status.xml", 'Status' => empty($errorArray) ? "OK" : "Critical", 'StatusSummary' => empty($errorArray) ? "All systems functioning." : implode("; ", $errorArray), 'TotalDepth' => 1, 'CurrentDepth' => 1, 'Type' => 'Website');
     $this->set($systemMetrics);
     $this->set('_rootNode', 'System');
 }
开发者ID:byu-oit-appdev,项目名称:student-ratings,代码行数:31,代码来源:StatusController.php

示例2: testConvenienceMethods

 /**
  * test convenience methods
  *
  * @return void
  */
 public function testConvenienceMethods()
 {
     $this->_deleteLogs();
     CakeLog::config('debug', array('engine' => 'File', 'types' => array('notice', 'info', 'debug'), 'file' => 'debug'));
     CakeLog::config('error', array('engine' => 'File', 'types' => array('emergency', 'alert', 'critical', 'error', 'warning'), 'file' => 'error'));
     $testMessage = 'emergency message';
     CakeLog::emergency($testMessage);
     $contents = file_get_contents(LOGS . 'error.log');
     $this->assertRegExp('/(Emergency|Critical): ' . $testMessage . '/', $contents);
     $this->assertFalse(file_exists(LOGS . 'debug.log'));
     $this->_deleteLogs();
     $testMessage = 'alert message';
     CakeLog::alert($testMessage);
     $contents = file_get_contents(LOGS . 'error.log');
     $this->assertRegExp('/(Alert|Critical): ' . $testMessage . '/', $contents);
     $this->assertFalse(file_exists(LOGS . 'debug.log'));
     $this->_deleteLogs();
     $testMessage = 'critical message';
     CakeLog::critical($testMessage);
     $contents = file_get_contents(LOGS . 'error.log');
     $this->assertContains('Critical: ' . $testMessage, $contents);
     $this->assertFalse(file_exists(LOGS . 'debug.log'));
     $this->_deleteLogs();
     $testMessage = 'error message';
     CakeLog::error($testMessage);
     $contents = file_get_contents(LOGS . 'error.log');
     $this->assertContains('Error: ' . $testMessage, $contents);
     $this->assertFalse(file_exists(LOGS . 'debug.log'));
     $this->_deleteLogs();
     $testMessage = 'warning message';
     CakeLog::warning($testMessage);
     $contents = file_get_contents(LOGS . 'error.log');
     $this->assertContains('Warning: ' . $testMessage, $contents);
     $this->assertFalse(file_exists(LOGS . 'debug.log'));
     $this->_deleteLogs();
     $testMessage = 'notice message';
     CakeLog::notice($testMessage);
     $contents = file_get_contents(LOGS . 'debug.log');
     $this->assertRegExp('/(Notice|Debug): ' . $testMessage . '/', $contents);
     $this->assertFalse(file_exists(LOGS . 'error.log'));
     $this->_deleteLogs();
     $testMessage = 'info message';
     CakeLog::info($testMessage);
     $contents = file_get_contents(LOGS . 'debug.log');
     $this->assertRegExp('/(Info|Debug): ' . $testMessage . '/', $contents);
     $this->assertFalse(file_exists(LOGS . 'error.log'));
     $this->_deleteLogs();
     $testMessage = 'debug message';
     CakeLog::debug($testMessage);
     $contents = file_get_contents(LOGS . 'debug.log');
     $this->assertContains('Debug: ' . $testMessage, $contents);
     $this->assertFalse(file_exists(LOGS . 'error.log'));
     $this->_deleteLogs();
 }
开发者ID:yuuicchan0912,项目名称:sample1,代码行数:59,代码来源:CakeLogTest.php

示例3: alert

 public function alert($message, array $context = array())
 {
     CakeLog::alert($message, $context);
 }
开发者ID:wvdongen,项目名称:cakephp-sparkpost,代码行数:4,代码来源:Cake2PsrLog.php

示例4: alert

 public function alert($message)
 {
     CakeLog::alert($message, $this->scope);
 }
开发者ID:malamalca,项目名称:lil-activesync,代码行数:4,代码来源:Log.php


注:本文中的CakeLog::alert方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。