本文整理汇总了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;
}
示例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);
}
示例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);
}
示例4: crit
/**
* @param string $message
* @param array $context
* @return bool
*/
public function crit($message, array $context = array())
{
return parent::crit($message, $context);
}