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


PHP Logger::crit方法代码示例

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


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

示例1: addProspects

 /**
  * 
  * @param LoanApplication $application
  */
 public function addProspects(LoanApplication $application)
 {
     $response = null;
     try {
         $borrowers = array($application->getBorrower());
         foreach ($application->getCoBorrower() as $coBorrower) {
             array_push($borrowers, $coBorrower);
         }
         // prepare borrowers
         $prospects = array();
         foreach ($borrowers as $borrower) {
             $married = false;
             if ($borrower->getMaritalStatus() == 0) {
                 $married = true;
             }
             $prospect = array('id' => $borrower->getId(), 'firstName' => $borrower->getFirstName(), 'lastName' => $borrower->getLastName(), 'email' => $borrower->getEmail(), 'primaryPhone' => $borrower->getPhoneHome(), 'suffix' => $borrower->getSuffix(), 'middleInitial' => $borrower->getMiddleInitial(), 'ssn' => $borrower->getSsn(), 'married' => $married, 'birthDate' => $borrower->getBirthDate()->format($this::SERVICE_DATE_FORMAT), 'homeAddress' => array('street1' => $borrower->getLocation()->getLocation()->getAddress1(), 'street2' => $borrower->getLocation()->getLocation()->getAddress2(), 'city' => $borrower->getLocation()->getLocation()->getCity(), 'state' => $borrower->getLocation()->getLocation()->getState()->getName(), 'stateAbbreviation' => $borrower->getLocation()->getLocation()->getState()->getAbbreviation(), 'zipcode' => $borrower->getLocation()->getLocation()->getZipcode()));
             array_push($prospects, $prospect);
         }
         $paramLoanOfficer = null;
         $loanOfficer = $application->getLoanOfficer();
         if (isset($loanOfficer)) {
             $loanOfficerLosId = $loanOfficer->getLosId();
             if (isset($loanOfficerLosId)) {
                 $paramLoanOfficer['username'] = $loanOfficerLosId;
             }
         }
         $params = array('user' => $this->user, 'prospects' => $prospects, 'loanOfficer' => $paramLoanOfficer);
         $response = $this->request('createProspect', $params);
         // update the los ids
         if ($response['result']['success']) {
             foreach ($response['result']['prospects'] as $p) {
                 $borrower = $this->em->getRepository('SudouxMortgageBundle:Borrower')->find($p['id']);
                 $borrower->setLosId($p['losID']);
                 $this->em->persist($borrower);
             }
             $this->em->flush();
         }
     } catch (\Exception $e) {
         $this->logger->crit($e->getMessage());
     }
     return $response;
 }
开发者ID:eric19h,项目名称:turbulent-wookie,代码行数:46,代码来源:LosSync.php

示例2: crit

 /**
  * Adds a log record at the CRITICAL level.
  * 
  * This method allows for compatibility with common interfaces.
  *
  * @param string $message The log message
  * @param array $context The log context
  * @return Boolean Whether the record has been processed
  * @static 
  */
 public static function crit($message, $context = array())
 {
     return \Monolog\Logger::crit($message, $context);
 }
开发者ID:samcrosoft,项目名称:MicroTranslate,代码行数:14,代码来源:lumen_ide_helper.php

示例3: crit

 /**
  * Adds a log record at the CRITICAL level.
  *
  * @param string $message The log message
  * @param array $context The log context
  * @return Boolean Whether the record has been processed
  */
 public function crit($message, array $context = array())
 {
     return $this->_logger->crit($message, $context);
 }
开发者ID:360i,项目名称:sonno,代码行数:11,代码来源:MonologAdapter.php

示例4: crit

 /**
  * @param string $message
  * @param array $context
  * @return bool
  */
 public function crit($message, array $context = array())
 {
     return parent::crit($message, $context);
 }
开发者ID:akentner,项目名称:incoming-ftp,代码行数:9,代码来源:LoggerProxy.php


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