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


PHP Logger::notice方法代码示例

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


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

示例1: inspect

 public function inspect()
 {
     $inspectionDto = new InspectionDto();
     $inspectionMessage = '';
     if ($this->createdTasksBeforeHandling !== $this->correctlyExecuted + count($this->executedWithError)) {
         $this->allTasksComplete = false;
         $inspectionMessage .= "Not all tasks complete: " . " created (before handling): " . $this->createdTasksBeforeHandling . " correctlyExecuted: " . serialize($this->getCorrectlyExecuted()) . " executedWithError: " . serialize($this->getExecutedWithError()) . $this->loggerPostfix;
     }
     $this->logger->notice("CreatedTasks before handling: " . serialize($this->createdTasksBeforeHandling));
     $this->logger->notice("CreatedTasks after handling: " . serialize($this->createdTasksNumber));
     $this->logger->notice("CorrectlyExecuted: " . serialize($this->getCorrectlyExecuted()));
     $this->logger->notice("Executed with error: " . serialize($this->executedWithError));
     if (!empty($this->executedWithError)) {
         switch ($this->attentionMethod) {
             case InspectorConstants::LOG:
                 $this->makeAttentionLog($inspectionMessage);
                 break;
             case InspectorConstants::MAIL:
                 $this->sendAttentionMail($inspectionMessage);
                 break;
             default:
                 $this->makeAttentionLog($inspectionMessage);
                 //$this->sendAttentionMail($inspectionMessage);
         }
     }
     $inspectionDto->setInspectionMessage($inspectionMessage);
     return $inspectionDto;
 }
开发者ID:jamset,项目名称:tasks-inspector,代码行数:28,代码来源:Inspector.php

示例2: workOn

 private function workOn(CommittedJob $job, HandlerInterface $jobHandler)
 {
     try {
         $this->logger->notice("Starting work on {$job->getId()}");
         $logProvider = new LogProvider($this->logger, $jobHandler);
         $this->jobExecutor->execute($job, $logProvider);
         $this->metro->succeed($job->getId());
         $this->logger->notice("Finished work on {$job->getId()}");
     } catch (\Exception $e) {
         $this->logException($e, $job->getId());
         $this->metro->fail($job->getId());
     }
 }
开发者ID:metro-q,项目名称:metro,代码行数:13,代码来源:Worker.php

示例3: notice

 public function notice($message, array $args = [], array $context = [])
 {
     if (count($args)) {
         $message = vsprintf($message, $args);
     }
     return parent::notice($message, $context);
 }
开发者ID:acgrid,项目名称:adbot,代码行数:7,代码来源:Logger.php

示例4: stopDaemon

 protected function stopDaemon()
 {
     $pid = $this->getRunningPid();
     if (!$pid) {
         $this->logger->notice("Cannot stop the daemon as it is not started");
         return "notstarted";
     }
     $this->logger->info("Trying to terminate the daemon", array('pid' => $pid));
     $this->processControl->kill($pid);
     for ($i = 0; ($pid = $this->getRunningPid()) && $i < 5; $i++) {
         sleep(1);
     }
     if ($pid) {
         $this->logger->warning("The daemon is resiting, trying to kill it", array('pid' => $pid));
         $this->processControl->kill($pid, true);
         for ($i = 0; ($pid = $this->getRunningPid()) && $i < 5; $i++) {
             sleep(1);
         }
     }
     if (!$pid) {
         $this->logger->notice("Daemon stopped");
         return "stopped";
     }
     $this->logger->error("Could not stop the daemon");
 }
开发者ID:DavidGarciaCat,项目名称:PHPCI,代码行数:25,代码来源:DaemonCommand.php

示例5: ping

 /**
  * Ping a journal, check on it's health, etc.
  *
  * @param Journal $journal
  *
  * @return PingResult
  *
  * @throws Exception
  */
 public function ping(Journal $journal)
 {
     $this->logger->notice("Pinging {$journal}");
     $url = $journal->getGatewayUrl();
     $client = $this->getClient();
     try {
         $response = $client->get($url, array('allow_redirects' => false, 'headers' => array('User-Agent' => 'PkpPlnBot 1.0; http://pkp.sfu.ca', 'Accept' => 'application/xml,text/xml,*/*;q=0.1')));
         $pingResponse = new PingResult($response);
         if ($pingResponse->getHttpStatus() === 200) {
             $journal->setContacted(new DateTime());
             $journal->setTitle($pingResponse->getJournalTitle('(unknown title)'));
             $journal->setOjsVersion($pingResponse->getOjsRelease());
             $journal->setTermsAccepted($pingResponse->areTermsAccepted() === 'yes');
         } else {
             $journal->setStatus('ping-error');
         }
         $this->em->flush($journal);
         return $pingResponse;
     } catch (RequestException $e) {
         $journal->setStatus('ping-error');
         $this->em->flush($journal);
         if ($e->hasResponse()) {
             return new PingResult($e->getResponse());
         }
         throw $e;
     } catch (XmlParseException $e) {
         $journal->setStatus('ping-error');
         $this->em->flush($journal);
         return new PingResult($e->getResponse());
     } catch (Exception $e) {
         $journal->setStatus('ping-error');
         $this->em->flush($journal);
         throw $e;
     }
 }
开发者ID:ubermichael,项目名称:pkppln-php,代码行数:44,代码来源:Ping.php

示例6: index

 /**
  * Handles incoming webhook requests.
  */
 public function index()
 {
     // set up logging to email
     $this->log = Log::getMonolog();
     if ($to = config('auto-deploy.notify')) {
         $domain = parse_url(config('app.url'), PHP_URL_HOST);
         $msg = \Swift_Message::newInstance('Project Deployed')->setFrom(["do_not_reply@{$domain}" => "Laravel Auto-Deploy[{$domain}]"])->setTo($to)->setBody('', 'text/html');
         $handler = new SwiftMailerHandler(Mail::getSwiftMailer(), $msg, Logger::NOTICE);
         $handler->setFormatter(new HtmlFormatter());
         $this->log->pushHandler($handler);
     }
     // check to see if we should execute this event
     if (in_array($this->origin->event(), array_keys(config("auto-deploy.{$this->origin->name}")))) {
         // get the parameters for the event we're handling
         $configKey = "auto-deploy.{$this->origin->name}.{$this->origin->event()}";
         $this->webroot = config("{$configKey}.webroot");
         $this->installDir = dirname($this->webroot) . '/' . date('Y-m-d') . '_' . $this->commitId;
         $steps = config("{$configKey}.steps");
         // execute the configured steps
         $this->result = ['Commit_ID' => $this->commitId, 'Timestamp' => date('r'), 'output' => ''];
         $whitelist = ['backupDatabase', 'pull', 'copyEnv', 'composer', 'npm', 'migrate', 'seed', 'deploy'];
         foreach ($steps as $step) {
             if (in_array($step, $whitelist) && !$this->{$step}()) {
                 $this->log->error('Deploy failed.', $this->result);
                 return;
             }
         }
         $this->log->notice('Deploy succeeded!', $this->result);
     } else {
         $this->log->error('Deploy failed.', ['Reason' => 'This event was not configured.']);
     }
 }
开发者ID:morphatic,项目名称:laravel-auto-deploy,代码行数:35,代码来源:DeployController.php

示例7: getStagingDir

 /**
  * Get the staging directory for processed deposits.
  *
  * @param Journal $journal
  *
  * @return string
  */
 public final function getStagingDir(Journal $journal)
 {
     $path = $this->absolutePath('staged', $journal);
     if (!$this->fs->exists($path)) {
         $this->logger->notice("Creating directory {$path}");
         $this->fs->mkdir($path);
     }
     return $path;
 }
开发者ID:ubermichael,项目名称:pkppln-php,代码行数:16,代码来源:FilePaths.php

示例8: processDeposit

 /**
  * Process one deposit. Fetch the data and write it to the file system.
  * Updates the deposit status, and may remove the processing files if 
  * LOCKSSOatic reports agreement.
  *
  * @param Deposit $deposit
  *
  * @return type
  */
 protected function processDeposit(Deposit $deposit, $force = false)
 {
     if ($deposit->getPlnState() === 'agreement') {
         $this->logger->notice($deposit->getDepositUuid());
         $this->delFileTree($this->filePaths->getHarvestFile($deposit), $force);
         $this->delFileTree($this->filePaths->getProcessingBagPath($deposit), $force);
         // $this->delFileTree($this->filePaths->getStagingBagPath($deposit), $force);
     }
 }
开发者ID:ubermichael,项目名称:pkppln-php,代码行数:18,代码来源:CleanupCommand.php

示例9: testPushErrors

 /**
  *
  */
 public function testPushErrors()
 {
     $redis = \Mockery::mock('Predis\\Client')->shouldReceive('publish')->times(8)->with('log', \Mockery::any())->mock();
     $monolog = new Logger('test');
     $monolog->pushHandler(new PublishHandler(new RedisPublisher($redis)));
     $monolog->debug('the message was: {message}', ['DEBUG!']);
     $monolog->info('the message was: {message}', ['INFO!']);
     $monolog->notice('the message was: {message}', ['NOTICE!']);
     $monolog->warning('the message was: {message}', ['WARNING!']);
     $monolog->error('the message was: {message}', ['ERROR!']);
     $monolog->critical('the message was: {message}', ['CRITICAL!']);
     $monolog->alert('the message was: {message}', ['ALERT!']);
     $monolog->emergency('the message was: {message}', ['EMERGENCY!']);
 }
开发者ID:zae,项目名称:monolog-publish,代码行数:17,代码来源:RedisTest.php

示例10: runMultithread

 /**
  * Run job in singlethread mode
  *
  * @param   string  Job unique identifier
  *
  * @return  array   {[pid],[name],[success],[start],[end],[result],[id]}
  */
 private function runMultithread($jobUid)
 {
     $job = $this->jobs[$jobUid];
     // get job start timestamp
     $start_timestamp = microtime(true);
     $this->logger->notice("Starting job " . $job['name'] . "(" . $job['id'] . ")");
     $name = $job['name'];
     $id = $job['id'];
     $parameters = $job['parameters'];
     $task = $job['task'];
     $task_class = $job['class'];
     $this->ipc_array[$jobUid] = array();
     // create a comm socket
     $socket = socket_create_pair(AF_UNIX, SOCK_STREAM, 0, $this->ipc_array[$jobUid]);
     if ($socket === false) {
         $this->logger->error("No IPC communication, aborting", array("JOBUID" => $jobUid, "ERROR" => socket_strerror(socket_last_error()), "ERRID" => null));
         array_push($this->completed_processes, array(null, $name, false, $start_timestamp, microtime(true), 'No IPC communication, exiting - ' . socket_strerror(socket_last_error()), $id, null));
         return array("pid" => null, "name" => $name, "uid" => $jobUid, "timestamp" => $start_timestamp, "id" => $id);
     }
     list($reader, $writer) = $this->ipc_array[$jobUid];
     $pid = pcntl_fork();
     if ($pid == -1) {
         $this->logger->error("Could not fok job, aborting");
         array_push($this->completed_processes, array(null, $name, false, $start_timestamp, microtime(true), 'Could not fok job', $id, null));
     } elseif ($pid) {
         //PARENT will take actions on processes later
         self::adjustNiceness($pid, $this->logger);
     } else {
         socket_close($reader);
         $thetask = new $task_class($parameters, $this->logger, null, $name, $start_timestamp, true, $id);
         try {
             $result = $thetask->start();
             $return = serialize(array("success" => $result["success"], "result" => $result["result"], "timestamp" => $result["timestamp"], "worklogid" => $result["worklogid"]));
             $exit = 0;
         } catch (TaskException $te) {
             $return = serialize(array("success" => false, "result" => $te->getMessage(), "timestamp" => $te->getEndTimestamp(), "worklogid" => $te->getWorklogId()));
             $exit = 1;
         } catch (Exception $e) {
             $return = serialize(array("success" => false, "result" => $e->getMessage(), "timestamp" => microtime(true), "worklogid" => null));
             $exit = 1;
         }
         if (socket_write($writer, $return, strlen($return)) === false) {
             $this->logger->error("socket_write() failed ", array("ERROR" => socket_strerror(socket_last_error($writer))));
         }
         socket_close($writer);
         exit($exit);
     }
     return array("pid" => $pid == -1 ? null : $pid, "name" => $name, "uid" => $jobUid, "id" => $id, "timestamp" => $start_timestamp);
 }
开发者ID:comodojo,项目名称:extender.framework,代码行数:56,代码来源:JobsRunner.php

示例11: fetch

 /**
  * Fetch one deposit from LOCKSSOMatic.
  *
  * @param Deposit $deposit
  * @param string  $href
  */
 public function fetch(Deposit $deposit, $href)
 {
     $client = $this->getHttpClient();
     $filepath = $this->filePaths->getRestoreDir($deposit->getJournal()) . '/' . basename($href);
     $this->logger->notice("Saving {$deposit->getJournal()->getTitle()} vol. {$deposit->getVolume()} no. {$deposit->getIssue()} to {$filepath}");
     try {
         $client->get($href, array('allow_redirects' => false, 'decode_content' => false, 'save_to' => $filepath));
         $hash = strtoupper(hash_file($deposit->getPackageChecksumType(), $filepath));
         if ($hash !== $deposit->getPackageChecksumValue()) {
             $this->logger->warning("Package checksum failed. Expected {$deposit->getPackageChecksumValue()} but got {$hash}");
         }
     } catch (Exception $ex) {
         $this->logger->error($ex->getMessage());
     }
 }
开发者ID:ubermichael,项目名称:pkppln-php,代码行数:21,代码来源:FetchContentCommand.php

示例12: sendRequest

 /**
  * Execute une requete curl
  *
  * @param string $url
  * @param string $method
  * @param array  $data
  *
  * @return array
  *
  * @author Benjamin Levoir <ben@levoir.fr>
  */
 private function sendRequest($url, $method, $data)
 {
     // Initialisation du curl
     $curl = curl_init($url);
     $this->logger->info('API CALL');
     $this->logger->info('API   ' . $url);
     curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
     $json = json_encode($data);
     $this->logger->info('API   ' . $json);
     switch ($method) {
         case 'POST':
             curl_setopt($curl, CURLOPT_POST, true);
             curl_setopt($curl, CURLOPT_POSTFIELDS, $json);
             curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/json', 'Content-Length: ' . strlen($json)));
             break;
         default:
             break;
     }
     // Nombre d'essai max
     $try = 5;
     do {
         $error = false;
         $curl_response = curl_exec($curl);
         $this->logger->info('API   ' . $curl_response);
         // Erreur sur requete curl
         if ($curl_response === false) {
             $info = curl_getinfo($curl);
             $this->logger->notice('API   ' . $info);
             curl_close($curl);
             break;
         }
         $decoded = json_decode($curl_response);
         if (isset($decoded->status)) {
             if (isset($decoded->status->status_code) && $decoded->status->status_code == '429') {
                 $error = true;
                 sleep(2);
                 $try--;
             } else {
                 // Erreur autre
                 $this->logger->error($curl_response);
                 return null;
             }
         }
     } while ($try && $error);
     curl_close($curl);
     return $decoded;
 }
开发者ID:blevoir,项目名称:teamlol,代码行数:58,代码来源:RiotApiService.php

示例13: checkForPublishedVideos

 /**
  * Get all the queued changes that are for unpublished videos.
  * If the video has become published set the correct time to execute based
  * on the videos' publish time.
  *
  * @return null
  */
 public function checkForPublishedVideos()
 {
     // First get all videos (one result per video) where its excute time has not yet been set
     $pendingVideos = DescriptionChange::whereNotNull('execute_mins_after_publish')->whereNull('executed_at')->groupBy('video_id')->get();
     $pendingVideoCount = count($pendingVideos);
     if ($pendingVideoCount === 1) {
         $this->log->info("1 video needs checking if it's published yet.");
     } else {
         $this->log->info($pendingVideoCount . " videos need checking if they're published yet.");
     }
     foreach ($pendingVideos as $pendingVideo) {
         /** @var DescriptionChange $pendingVideo */
         $user = $pendingVideo->getUser();
         if (!$user) {
             $this->log->error("User {$pendingVideo->user_id} not found in database.");
             continue;
         }
         $this->log->info("Checking if video {$pendingVideo->video_id} (user {$user->name}) is published yet.");
         // We need to login as the user that owns this video in order to query it
         try {
             /** @var \Google_Client $googleClient */
             $googleClient = App::make('Google_Client');
             $googleClient->setAccessToken($user->access_token);
         } catch (Exception $e) {
             $this->log->error("Exception setting Google access token: " . $e->getMessage());
             continue;
         }
         $video = $pendingVideo->getVideo();
         if ($video->isPublished()) {
             $this->log->info("Video {$pendingVideo->video_id} was published at " . date('Y-m-d H:i:s', $video->getPublishedTimestamp()));
             $thisVideoChanges = DescriptionChange::where('video_id', $pendingVideo->video_id)->whereNotNull('execute_mins_after_publish')->whereNull('executed_at')->get();
             foreach ($thisVideoChanges as $thisVideoChange) {
                 $publishedAt = $video->getPublishedTimestamp();
                 $executeAt = $publishedAt + $thisVideoChange->execute_mins_after_publish * 60;
                 $thisVideoChange->execute_at = date('Y-m-d H:i:s', $executeAt);
                 $thisVideoChange->execute_mins_after_publish = null;
                 $thisVideoChange->save();
                 $this->log->info("Set execute time for change {$thisVideoChange->id} to " . $thisVideoChange->execute_at);
             }
         } else {
             $this->log->notice("Video {$pendingVideo->video_id} is not published.");
         }
     }
 }
开发者ID:antriver,项目名称:youtube-automator,代码行数:51,代码来源:ExecuteChanges.php

示例14: notice

 /**
  * Normal but significant events.
  *
  * @param string $message
  * @param array $params
  * @param array $context
  * @return null
  */
 public function notice($message, array $params = array(), array $context = array())
 {
     $logMessage = $this->createMessage($message, $params);
     $this->logger->notice($logMessage, $context);
 }
开发者ID:rlacerda83,项目名称:laravel-dynamic-logger,代码行数:13,代码来源:DynamicLogger.php

示例15: logMessage

 protected function logMessage($message, array $context = array(), $severity)
 {
     $adminLevel = $this->helper->getConfigValue('shqlogmenu/shqlogger/admin_level');
     $systemLogLevel = $this->helper->getConfigValue('shqlogmenu/shqlogger/system_level');
     $emailLevel = $this->helper->getConfigValue('shqlogmenu/shqlogger/email_level');
     if ($adminLevel > 0 && $adminLevel >= $severity) {
         $this->logAdmin($message, $context, $severity);
     }
     if ($systemLogLevel > 0 && $systemLogLevel >= $severity) {
         $message = is_string($message) ? $message : var_export($message, true);
         switch ($severity) {
             case self::SEVERITY_NOTICE:
                 parent::debug($message, $context);
                 break;
             case self::SEVERITY_MINOR:
                 parent::notice($message, $context);
                 break;
             case self::SEVERITY_MAJOR:
                 parent::warning($message, $context);
                 break;
             case self::SEVERITY_CRITICAL:
                 parent::critical($message, $context);
                 break;
         }
     }
     if ($emailLevel > 0 && $emailLevel >= $severity) {
         $this->logEmail($message, $context, $severity);
     }
     return true;
 }
开发者ID:shipperhq,项目名称:module-logger,代码行数:30,代码来源:Logger.php


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