mirror of
https://github.com/Seldaek/monolog.git
synced 2025-02-24 06:52:34 +01:00
Code formatting.
This commit is contained in:
parent
a04bec0bec
commit
37f6766b9a
@ -24,20 +24,19 @@ use Monolog\Logger;
|
|||||||
*
|
*
|
||||||
* @author Thomas Tourlourat <thomas@tourlourat.com>
|
* @author Thomas Tourlourat <thomas@tourlourat.com>
|
||||||
*/
|
*/
|
||||||
class MongoDBHandler extends AbstractProcessingHandler
|
class MongoDBHandler extends AbstractProcessingHandler {
|
||||||
{
|
|
||||||
private $mongoCollection;
|
private $mongoCollection;
|
||||||
|
|
||||||
public function __construct(\Mongo $mongo, $database, $collection, $level = Logger::DEBUG, $bubble = true)
|
public function __construct(\Mongo $mongo, $database, $collection, $level = Logger::DEBUG, $bubble = true) {
|
||||||
{
|
$this->mongoCollection = $this->mongo->selectCollection($database, $collection);
|
||||||
$this->mongoCollection = $this->mongo->selectCollection ($database, $collection);
|
|
||||||
|
|
||||||
parent::__construct($level, $bubble);
|
parent::__construct($level, $bubble);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function write(array $record)
|
protected function write(array $record) {
|
||||||
{
|
|
||||||
unset($record["formatted"]);
|
unset($record["formatted"]);
|
||||||
$this->mongoCollection->save ($record);
|
$this->mongoCollection->save($record);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user