mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 12:05:29 +00:00
1728a62af5
Thanks to Marco Hermo and Brett Tasker for helping with this * Bump framework/cms to ^4.0@dev * WIP Silverstripe 4 compatibility fixes * more replacements and patches to migrate this module to 4.0 * Update composer.json * remove php <5.5 from travis.yml * WIP more SS4 compatibility fixes * WIP fix solr path to use DIR, avoid hardcoded module name * WIP respect current include path * WIP Namespacing and use on SearchIndex class * Namespacing for tests * WIP add namespaces to all classes * Second push of Test changes + namespacing * WIP split Solr files with multiple classes into single file / single class. Adjust namespaces * Fix PHP errors in test * break out search components with multiple classes into individual files and change namespaces * Update namespacing for Search indexes and variants in tests * Batch fixes for tests #2 * Update _config.php to use namespace * Use root namespace in referencing Apache_Solr_Document * Migrate task names so that the name is not fully qualified
59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
namespace SilverStripe\FullTextSearch\Utils\Logging;
|
|
use Monolog\Handler\AbstractProcessingHandler;
|
|
use Monolog\Logger;
|
|
|
|
if (!interface_exists('QueuedJob')) {
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Handler for logging events into QueuedJob message data
|
|
*/
|
|
class QueuedJobLogHandler extends AbstractProcessingHandler
|
|
{
|
|
/**
|
|
* Job to log to
|
|
*
|
|
* @var QueuedJob
|
|
*/
|
|
protected $queuedJob;
|
|
|
|
/**
|
|
* @param QueuedJob $queuedJob Job to log 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(QueuedJob $queuedJob, $level = Logger::DEBUG, $bubble = true)
|
|
{
|
|
parent::__construct($level, $bubble);
|
|
$this->setQueuedJob($queuedJob);
|
|
}
|
|
|
|
/**
|
|
* Set a new queuedjob
|
|
*
|
|
* @param QueuedJob $queuedJob
|
|
*/
|
|
public function setQueuedJob(QueuedJob $queuedJob)
|
|
{
|
|
$this->queuedJob = $queuedJob;
|
|
}
|
|
|
|
/**
|
|
* Get queuedjob
|
|
*
|
|
* @return QueuedJob
|
|
*/
|
|
public function getQueuedJob()
|
|
{
|
|
return $this->queuedJob;
|
|
}
|
|
|
|
protected function write(array $record)
|
|
{
|
|
// Write formatted message
|
|
$this->getQueuedJob()->addMessage($record['formatted']);
|
|
}
|
|
}
|