blue32a/monolog-google-cloud-logging

Google Cloud Logging handler for Monolog.

v1.0.0 2022-10-21 09:40 UTC

This package is auto-updated.

Last update: 2024-04-21 13:39:06 UTC


README

Test

About

Google Cloud Logging handler for Monolog.

Installation

$ composer require blue32a/monolog-google-cloud-logging

Usage

use Blue32a\MonologGoogleCloudLoggingHandler\GoogleCloudLoggingHandler;

$logger = new \Monolog\Logger();

$config = ['projectId' => 'xxxxx'];
$loggingClient = GoogleCloudLoggingHandler::factoryLoggingClient($config);
$handler = new GoogleCloudLoggingHandler('logname', $loggingClient);
$logger->pushHandler($handler);

$logger->info('Hello World!');