Download the PHP package creitive/monolog-extra-data-processor without Composer

On this page you can find all versions of the php package creitive/monolog-extra-data-processor. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package monolog-extra-data-processor

Monolog Extra Data Processor

Latest Version on Packagist Build Status Total Downloads

A processor for Monolog to enable easy addition of arbitrary data into all log entries.

Install

Via Composer

Usage

You can do something like this (obviously, the data you pass in depends on your own needs):

That's all! The extra data you've passed will now be logged with all entries, under the extra attribute.

If you already have an instance with some data, you can add additional data:

You can also remove extra data by keys:

And get all currently configured data:

What's the point?

For example, we use this processor class to log the following data (which we find useful):

Some of this (for example, the web-request stuff) is available via the Monolog\Processor\WebProcessor - however, that class seems a bit limited in scope, and it would seem a bit hacky to use it for this purpose.

You could even misuse the Monolog\Processor\TagProcessor class to log extra stuff, but it would all be under extra.tags instead of just extra - and it's still missing the point.

Tips

Since we primarily work with Laravel 5, we have an App\Log\Configurator class, which wires the basic logging functionality. It's invoked in bootstrap/app.php like this:

The configurator, in turn, pushes the GitProcessor (awesome for knowing which exact project commit was being executed when the entry was logged), and the ExtraDataProcessor to the passed logger instance. In this step, the ExtraDataProcessor is only populated with the current environment, console command check, and command-line arguments - as the rest of the data comes via the HTTP request (which isn't captured yet at this point). We also configure the handlers at this point.

The request data is added later using a service provider, when the app is already booted.

If logging something like input data, be sure to pay attention to privacy issues - for example, don't log $_POST['password'] from login forms, as this compromises both your users and your system. This is especially true if you're using some kind of cloud-hosted third-party logging service (e.g. Logentries, Loggly, Papertrail, etc.)

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

Contributing

Please see CONDUCT for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.


All versions of monolog-extra-data-processor with dependencies

PHP Build Version
Package Version
Requires php Version >=5.5.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package creitive/monolog-extra-data-processor contains the following files

Loading the files please wait ....