ari-salt / logger by ari-salt

A logger for Laravel/Lumen apps.
141
0
1
Package Data
Maintainer Username: ari-salt
Maintainer Contact: aristo.rinjuang@salt.co.id (ari-salt)
Package Create Date: 2023-09-29
Package Last Update: 2023-10-03
Language: PHP
License: MIT
Last Refreshed: 2024-05-15 15:00:13
Package Statistics
Total Downloads: 141
Monthly Downloads: 2
Daily Downloads: 0
Total Stars: 0
Total Watchers: 1
Total Forks: 0
Total Open Issues: 0

logger

A logger for Laravel/Lumen apps.

Installation

$ composer require ari-salt/logger

Usage

Register middlewares to the routes.

use AriSALT\Logger\Logger;

try {
    ...
} catch (Exception $e) {
    Logger::logging($logTitle, $logFilename, $e->getMessage());
    ...
}