district5 / mondoc-log-handler
A Monolog compatible log handler for the Mondoc library.
1.0.1
2024-07-25 07:02 UTC
Requires
- php: >=8.1.0
- ext-mongodb: *
- district5/mondoc: *
- mongodb/mongodb: *
- monolog/monolog: *
Requires (Dev)
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2024-10-25 07:31:28 UTC
README
This library is a Monolog handler that logs to a MongoDB collection using the Mondoc library. It complements the Monolog library by providing a handler that logs to a MongoDB collection using Mondoc.
Installation...
composer require district5/mondoc-log-handler
Usage...
<?php use District5\MondocLogHandler\Handler\MondocLogHandler; use District5\MondocLogHandler\MondocLogConfig; use Monolog\Level; use Monolog\Logger; // Set up MondocConfig $client = new \MongoDB\Client('mongodb://localhost:27017'); \District5\Mondoc\MondocConfig::getInstance()->addDatabase( $client->selectDatabase('my_database'), 'default' // This is the default connection id ) // Set up MondocLogConfig $config = MondocLogConfig::getInstance()->setConnectionId( 'default' // This is the default connection id )->setCollectionName( 'mondoc_log' // This is the default collection name ); // Set up the logger $logger = new Logger('my_app'); $handler = new MondocLogHandler( $level = Level::Debug, $bubble = true ); $handler->setFormatter( new LineFormatter('%message%') // This is the default formatter and format ); $logger->pushHandler($handler); $logger->info('A test log from MondocLogHandler'); $lastLogModel = $handler->getLastLog(); echo $lastLogModel->getMessage(); // 'A test log from MondocLogHandler'
Testing...
composer install
./vendor/bin/phpunit