Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leon0399/monolog-flysystem
Writes your Monolog records into Flysystem filesystems.
https://github.com/leon0399/monolog-flysystem
cloud-logging flysystem log logging monolog monolog-handler monolog-library
Last synced: 18 days ago
JSON representation
Writes your Monolog records into Flysystem filesystems.
- Host: GitHub
- URL: https://github.com/leon0399/monolog-flysystem
- Owner: leon0399
- License: mit
- Created: 2018-08-21T15:56:49.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-06-18T02:23:26.000Z (5 months ago)
- Last Synced: 2024-10-15T03:24:53.480Z (about 1 month ago)
- Topics: cloud-logging, flysystem, log, logging, monolog, monolog-handler, monolog-library
- Language: PHP
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 3
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Monolog Flysystem [![Tests / PHPUnit](https://github.com/leon0399/monolog-flysystem/actions/workflows/phpunit.yml/badge.svg)](https://github.com/leon0399/monolog-flysystem/actions/workflows/phpunit.yml) [![codecov](https://codecov.io/gh/leon0399/monolog-flysystem/branch/master/graph/badge.svg)](https://codecov.io/gh/leon0399/monolog-flysystem)
[![Total Downloads](https://poser.pugx.org/leon0399/monolog-flysystem/downloads)](https://packagist.org/packages/leon0399/monolog-flysystem)
[![Latest Stable Version](https://poser.pugx.org/leon0399/monolog-flysystem/v/stable)](https://packagist.org/packages/leon0399/monolog-flysystem)
[![Latest Unstable Version](https://poser.pugx.org/leon0399/monolog-flysystem/v/unstable)](https://packagist.org/packages/leon0399/monolog-flysystem)
[![License](https://poser.pugx.org/leon0399/monolog-flysystem/license)](https://packagist.org/packages/leon0399/monolog-flysystem)Writes your Monolog records into Flysystem files.
## Installation
Install the latest version with
```bash
$ composer require leon0399/monolog-flysystem
```## Basic Usage
```php
pushHandler($handler);// add records to the log
$log->warning('Foo');
$log->error('Bar');
```