All Projects β†’ Seldaek β†’ Monolog

Seldaek / Monolog

Licence: mit
Requirements

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to Monolog

Timber Elixir
🌲 Great Elixir logging made easy
Stars: ✭ 226 (-98.83%)
Mutual labels:  logger, logging
Laravel Logger
An out the box activity logger for your Laravel or Lumen application. Laravel logger is an activity event logger for your laravel application. It comes out the box with ready to use with dashboard to view your activity. Laravel logger can be added as a middleware or called through a trait. This package is easily configurable and customizable. Supports Laravel 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 6, and 7+
Stars: ✭ 366 (-98.11%)
Mutual labels:  logger, logging
Golog
A high-performant Logging Foundation for Go Applications. X3 faster than the rest leveled loggers.
Stars: ✭ 208 (-98.93%)
Mutual labels:  logger, logging
Acho
The Hackable Log
Stars: ✭ 189 (-99.02%)
Mutual labels:  logger, logging
Analog
PHP logging library that is highly extendable and simple to use.
Stars: ✭ 314 (-98.38%)
Mutual labels:  logger, logging
Logcat
Android ζ—₯εΏ—ζ‰“ε°ζ‘†ζžΆοΌŒεœ¨ζ‰‹ζœΊδΈŠε―δ»₯η›΄ζŽ₯ηœ‹εˆ° Logcat ζ—₯志啦
Stars: ✭ 189 (-99.02%)
Mutual labels:  logger, logging
gxlog
A concise, functional, flexible and extensible logger for go.
Stars: ✭ 65 (-99.66%)
Mutual labels:  logger, logging
Wormholy
iOS network debugging, like a wizard πŸ§™β€β™‚οΈ
Stars: ✭ 2,010 (-89.62%)
Mutual labels:  logger, logging
Nestjs Pino
Platform agnostic logger for NestJS based on Pino with REQUEST CONTEXT IN EVERY LOG
Stars: ✭ 283 (-98.54%)
Mutual labels:  logger, logging
Tty Logger
A readable, structured and beautiful logging for the terminal
Stars: ✭ 280 (-98.55%)
Mutual labels:  logger, logging
Electron Timber
Pretty logger for Electron apps
Stars: ✭ 337 (-98.26%)
Mutual labels:  logger, logging
Caterpillar
Caterpillar is the ultimate logging system for Deno, Node.js, and Web Browsers. Log levels are implemented to the RFC standard. Log entries can be filtered and piped to various streams, including coloured output to the terminal, the browser's console, and debug files. You can even write your own transforms.
Stars: ✭ 330 (-98.3%)
Mutual labels:  logger, logging
Heliumlogger
A lightweight logging framework for Swift
Stars: ✭ 169 (-99.13%)
Mutual labels:  logger, logging
Monolog Bundle
Symfony Monolog Bundle
Stars: ✭ 2,532 (-86.92%)
Mutual labels:  logger, logging
Android Plog
A Pure, Pretty and Powerful logging library for android.
Stars: ✭ 168 (-99.13%)
Mutual labels:  logger, logging
Chipmunk
log analysis tool
Stars: ✭ 247 (-98.72%)
Mutual labels:  logger, logging
Quicklogger
Library for logging on files, console, memory, email, rest, eventlog, syslog, slack, telegram, redis, logstash, elasticsearch, influxdb, graylog, Sentry, Twilio, ide debug messages and throw events for Delphi/Firemonkey/freepascal/.NET (Windows/Linux/OSX/IOS/Android).
Stars: ✭ 137 (-99.29%)
Mutual labels:  logger, logging
Dotzu
πŸ“±πŸ‘€ In-App iOS Debugging Tool With Enhanced Logging, Networking Info, Crash reporting And More.
Stars: ✭ 1,802 (-90.69%)
Mutual labels:  logger, logging
Pygogo
A Python logging library with superpowers
Stars: ✭ 265 (-98.63%)
Mutual labels:  logger, logging
Tslog
πŸ“ tslog - Expressive TypeScript Logger for Node.js.
Stars: ✭ 321 (-98.34%)
Mutual labels:  logger, logging

Monolog - Logging for PHP Continuous Integration

Total Downloads Latest Stable Version

Monolog sends your logs to files, sockets, inboxes, databases and various web services. See the complete list of handlers below. Special handlers allow you to build advanced logging strategies.

This library implements the PSR-3 interface that you can type-hint against in your own libraries to keep a maximum of interoperability. You can also use it in your applications to make sure you can always use another compatible logger at a later time. As of 1.11.0 Monolog public APIs will also accept PSR-3 log levels. Internally Monolog still uses its own level scheme since it predates PSR-3.

Installation

Install the latest version with

$ composer require monolog/monolog

Basic Usage

<?php

use Monolog\Logger;
use Monolog\Handler\StreamHandler;

// create a log channel
$log = new Logger('name');
$log->pushHandler(new StreamHandler('path/to/your.log', Logger::WARNING));

// add records to the log
$log->warning('Foo');
$log->error('Bar');

Documentation

Support Monolog Financially

Get supported Monolog and help fund the project with the Tidelift Subscription or via GitHub sponsorship.

Tidelift delivers commercial support and maintenance for the open source dependencies you use to build your applications. Save time, reduce risk, and improve code health, while paying the maintainers of the exact dependencies you use.

Third Party Packages

Third party handlers, formatters and processors are listed in the wiki. You can also add your own there if you publish one.

About

Requirements

  • Monolog ^2.0 works with PHP 7.2 or above, use Monolog ^1.25 for PHP 5.3+ support.

Support

Monolog 1.x support is somewhat limited at this point and only important fixes will be done. You should migrate to Monolog 2 where possible to benefit from all the latest features and fixes.

Submitting bugs and feature requests

Bugs and feature request are tracked on GitHub

Framework Integrations

Author

Jordi Boggiano - [email protected] - http://twitter.com/seldaek
See also the list of contributors who participated in this project.

License

Monolog is licensed under the MIT License - see the LICENSE file for details

Acknowledgements

This library is heavily inspired by Python's Logbook library, although most concepts have been adjusted to fit to the PHP world.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].