brackets/advanced-logger

Advanced logger
259,407 1
Install
composer require brackets/advanced-logger
Latest Version:v3.1.0
PHP:^8.0|^8.1
License:MIT
Last Updated:Oct 30, 2023
Links: GitHub  ·  Packagist
Maintainer: brackets

Advanced Logger

Advanced logger is a laravel package used to automatically log every request made to you laravel application. Each request is also identified by hash, which can be used in standard log to identify the request.

This package has been inspired by package https://github.com/andersao/laravel-request-logger from Anderson Andrade.

Installation

Composer

Run composer require brackets/advanced-logger in your terminal.

Laravel

This package is for Laravel 5.5, 5.6 and 5.7, so it has auto discovery.

To publish config file, run

php artisan vendor:publish --provider="Brackets\AdvancedLogger\AdvancedLoggerServiceProvider"

Configuration

All options are described in config/advanced-logger.php.

Using request hash in standard log file in Laravel 5.7

If you would like to have request identifier in you standard log, to match log events with request you could add to config/logging.php

'tap' => [Brackets\AdvancedLogger\LogCustomizers\HashLogCustomizer::class],

to daily channel. The resulted code should looks like

    'channels' => [
        ...

        'daily' => [
            'driver' => 'daily',
            'path' => storage_path('logs/laravel.log'),
            'level' => 'debug',
            'days' => 14,
            'tap' => [Brackets\AdvancedLogger\LogCustomizers\HashLogCustomizer::class],
        ],

        ...
    ],

This log modifier can be used also in other channels, however it uses extended LineFormatter.

Related Packages

jmarcher/laravel-request-logger

HTTP request logger middleware for Laravel

5,199 6
mnabialek/laravel-sql-logger

Log SQL queries in Laravel/Lumen framework

841,148 158
libern/laravel-sql-logging

Laravel 5 package for logging SQL queries.

4,598 0
ytake/laravel-aspect

Aspect Oriented Programming library for laravel framework, and lumen

143,346 138