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');
 }
예제 #2
0
 /**
  * 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();
 }
예제 #3
0
 public function alert($message, array $context = array())
 {
     CakeLog::alert($message, $context);
 }
예제 #4
0
 public function alert($message)
 {
     CakeLog::alert($message, $this->scope);
 }