本文整理汇总了PHP中Monolog\Handler\AbstractProcessingHandler类的典型用法代码示例。如果您正苦于以下问题:PHP AbstractProcessingHandler类的具体用法?PHP AbstractProcessingHandler怎么用?PHP AbstractProcessingHandler使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了AbstractProcessingHandler类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的PHP代码示例。
示例1: __construct
/**
* @param \Doctrine\DBAL\Connection $conn
* @param string $table
* @param array $columnMap
* @param int $level
* @param bool $bubble
*/
public function __construct(\Doctrine\DBAL\Connection $conn, $table, array $columnMap, $level = Logger::DEBUG, $bubble = true)
{
$this->conn = $conn;
$this->table = $table;
$this->columnMap = $columnMap;
parent::__construct($level, $bubble);
}
开发者ID:GerDner,项目名称:luck-docker,代码行数:14,代码来源:DoctrineDBALHandler.php
示例2: handle
/**
* {@inheritdoc}
*/
public function handle(array $record)
{
if ($record['channel'] != 'twitter_data') {
return false;
}
return parent::handle($record);
}
开发者ID:bangpound,项目名称:twitter-streaming-bundle,代码行数:10,代码来源:DBALHandler.php
示例3: __construct
public function __construct(MessageSender $sender, SmsapiFormatterFactory $formatterFactory, SmsapiConfig $config)
{
parent::__construct($config->handlerLoggerLevel, $config->handlerBubble);
$this->sender = $sender;
$this->formatterFactory = $formatterFactory;
$this->config = $config;
}
开发者ID:smsapi,项目名称:monolog-smsapi,代码行数:7,代码来源:SmsapiHandler.php
示例4: __construct
/**
* $topic_arn is name of a topic that you have created either in the control panel or
* using AmazonSNS->create_topic
*
* For the $snsClient pass a a ready SnsClient, depending ony your setup
* More info http://docs.aws.amazon.com/aws-sdk-php/guide/latest/service-sns.html
*
* @param string $topicArn The name of the SNS topic to publish to
* @param string $subject Used for email subscriptions to the topic
* @param SnsClient $snsClient The Sns client
* @param integer $level The minimum logging level at which this handler will be triggered
* @param boolean $bubble Whether the messages that are handled can bubble up the stack or not
*/
public function __construct($topicArn, $subject, SnsClient $snsClient, $level = Logger::DEBUG, $bubble = true)
{
parent::__construct($level, $bubble);
$this->topicArn = $topicArn;
$this->subject = $subject;
$this->sns = $snsClient;
}
开发者ID:CascadeEnergy,项目名称:monolog-aws,代码行数:20,代码来源:SnsHandler.php
示例5: getDefaultFormatter
/**
* {@inheritdoc}
*
* Depending on the input type of the Loggly interface, this will default
* to either a JSON formatter or a text appropriate formatter.
*
* @return \Monolog\Formatter\FormatterInterface
*/
protected function getDefaultFormatter()
{
if ($this->getLoggly()->getInput()->getFormat() === 'json') {
return new JsonFormatter();
}
return parent::getDefaultFormatter();
}
开发者ID:cowlby,项目名称:monologgly,代码行数:15,代码来源:LogglyHandler.php
示例6: __construct
/**
* @param string $slackTeam Slack team slug
* @param string $token Slackbot token
* @param string $channel Slack channel (encoded ID or name)
* @param int $level The minimum logging level at which this handler will be triggered
* @param bool $bubble Whether the messages that are handled can bubble up the stack or not
*/
public function __construct($slackTeam, $token, $channel, $level = Logger::CRITICAL, $bubble = true)
{
parent::__construct($level, $bubble);
$this->slackTeam = $slackTeam;
$this->token = $token;
$this->channel = $channel;
}
开发者ID:naldz,项目名称:cyberden,代码行数:14,代码来源:SlackbotHandler.php
示例7: __construct
/**
* @param int $logName
* @param bool|int $level
* @param bool|true $bubble
*/
public function __construct($logName, $level = Logger::DEBUG, $bubble = true)
{
$this->logName = $logName;
$log = get_option($this->logName);
$this->logs = is_array($log) ? $log : array();
parent::__construct($level, $bubble);
}
开发者ID:panvagenas,项目名称:wp-plugin-core,代码行数:12,代码来源:DBHandler.php
示例8: __construct
public function __construct(Build $build, $level = LogLevel::INFO, $bubble = true)
{
parent::__construct($level, $bubble);
$this->build = $build;
// We want to add to any existing saved log information.
$this->logValue = $build->getLog();
}
开发者ID:bztrn,项目名称:PHPCI,代码行数:7,代码来源:BuildDBLogHandler.php
示例9: __destruct
public function __destruct()
{
if ($this->sendOnDestruct) {
$this->send();
}
parent::__destruct();
}
开发者ID:mayoturis,项目名称:logstatsphp,代码行数:7,代码来源:LogstatsHandler.php
示例10: __construct
/**
* {@inheritdoc}
*
* @param null $function The raising function, if not set the channel name is used.
* @param null $action The log action, if not set the level is used.
*/
public function __construct($level = Logger::DEBUG, $bubble = true, $function = null, $action = null)
{
parent::__construct($level, $bubble);
$this->function = $function;
$this->action = $action;
$this->adapter = new ContaoHandlerAdapter();
}
开发者ID:bit3,项目名称:contao-logger,代码行数:13,代码来源:ContaoHandler.php
示例11: __construct
public function __construct(OutputInterface $output = null, $bubble = true, array $verbosityLevelMap = array())
{
parent::__construct(Logger::DEBUG, $bubble);
if ($verbosityLevelMap) {
$this->verbosityLevelMap = $verbosityLevelMap;
}
}
开发者ID:ChristianBreitkreutz,项目名称:sonar-php,代码行数:7,代码来源:PHPSquidSensor.php
示例12: __construct
public function __construct($hooksurl, $channel, $username, $level = Logger::ERROR, $bubble = true)
{
parent::__construct($level, $bubble);
$this->hooksurl = $hooksurl;
$this->channel = $channel;
$this->username = $username;
}
开发者ID:pwnro,项目名称:slackwebhandler,代码行数:7,代码来源:SlackWebHandler.php
示例13: __construct
/**
* @param string $account_sid Twilio api account sid
* @param string $auth_token Twilio api access token
* @param string|array $from_numbers Phone number or array of numbers (one is selected randomly)
* the message will be sent from.
* @param string|array $to_numbers Phone number or array of numbers the message will be sent to
* @param integer $level The minimum logging level at which this handler will be triggered
* @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not
*/
public function __construct($account_sid, $auth_token, $from_numbers, $to_numbers, $level = Logger::CRITICAL, $bubble = true)
{
$this->twilio_client = new \Services_Twilio($account_sid, $auth_token);
$this->to_numbers = (array) $to_numbers;
$this->from_numbers = (array) $from_numbers;
parent::__construct($level, $bubble);
}
开发者ID:usf-it,项目名称:usf-idm-common,代码行数:16,代码来源:TwilioHandler.php
示例14: __construct
public function __construct(GatewayInterface $gateway, $number, $sender = null, $level = Logger::CRITICAL, $bubble = true)
{
parent::__construct($level, $bubble);
$this->gateway = $gateway;
$this->number = $number;
$this->sender = $sender;
}
开发者ID:indigophp,项目名称:sms,代码行数:7,代码来源:SmsHandler.php
示例15: __construct
/**
* SlackWebhookHandler constructor.
*
* @param SlackConfig $slackConfig
* @param MonologConfig $monologConfig
*
* @throws MissingExtensionException When the curl extension is not activated
*/
public function __construct(SlackConfig $slackConfig, MonologConfig $monologConfig, Curl\Util $curlUtil)
{
parent::__construct($monologConfig->getLevel(), $monologConfig->doesBubble());
$this->slackConfig = $slackConfig;
$this->monologConfig = $monologConfig;
$this->curlUtil = $curlUtil;
}
开发者ID:Pageon,项目名称:SlackWebhookMonolog,代码行数:15,代码来源:SlackWebhookHandler.php
示例16: __construct
/**
* @param StatsdClientInterface $statsDService The Service sends the packet
* @param StatsdDataFactoryInterface $statsDFactory The Factory creates the StatsDPacket
* @param string $prefix Statsd key prefix
* @param integer $level The minimum logging level at which this handler will be triggered
* @param Boolean $bubble Whether the messages that are handled can bubble up the stack or not
*/
public function __construct(StatsdClientInterface $statsDService, StatsdDataFactoryInterface $statsDFactory = null, $prefix, $level = Logger::DEBUG, $bubble = true)
{
parent::__construct($level, $bubble);
$this->statsDService = $statsDService;
$this->statsDFactory = $statsDFactory ? $statsDFactory : new StatsdDataFactory();
$this->prefix = $prefix;
}
开发者ID:MediaWiki-stable,项目名称:1.26.1,代码行数:14,代码来源:StatsDHandler.php
示例17: __construct
/**
* @param string $name
* @param int $level
* @param bool $bubble
*/
public function __construct($name, $level = Logger::DEBUG, $bubble = true)
{
parent::__construct($level, $bubble);
$this->name = $name;
$this->notifier = JoliNotif\NotifierFactory::create();
$this->notification = new JoliNotif\Notification();
}
开发者ID:kamilsk,项目名称:common,代码行数:12,代码来源:DesktopNotificationHandler.php
示例18: __construct
/**
* BugSnagHandler constructor.
*
* @param int $level
* @param bool $bubble
* @param string $error_name
* @param Bugsnag_Client $bugsnag
*/
public function __construct($level = Logger::WARNING, $bubble = true, $error_name, Bugsnag_Client $bugsnag)
{
parent::__construct($level, $bubble);
$this->bugsnag = $bugsnag;
$this->error_name = $error_name;
$this->bugsnag->setBeforeNotifyFunction([$this, 'beforeNotifyFunction']);
}
开发者ID:zae,项目名称:monolog-bugsnag,代码行数:15,代码来源:BugsnagHandler.php
示例19: __construct
public function __construct(EntityManager $em, TokenStorageInterface $tokenStorage, Request $request, $level = Logger::DEBUG, $bubble = true)
{
$this->em = $em;
$this->tokenStorage = $tokenStorage;
$this->request = $request;
parent::__construct($level, $bubble);
}
开发者ID:QuangDang212,项目名称:roadiz,代码行数:7,代码来源:DoctrineHandler.php
示例20: setFormatter
/**
* {@inheritdoc}
*/
public function setFormatter(FormatterInterface $formatter)
{
if ($formatter instanceof ElasticaFormatter) {
return parent::setFormatter($formatter);
}
throw new \InvalidArgumentException('ElasticSearchHandler is only compatible with ElasticaFormatter');
}
开发者ID:TeamOfMalaysia,项目名称:H,代码行数:10,代码来源:ElasticSearchHandler.php
注:本文中的Monolog\Handler\AbstractProcessingHandler类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论