twoh/logger

This project contains the basic Implementation of Loggers.

1.0.9 2025-03-19 09:34 UTC

This package is auto-updated.

Last update: 2025-03-19 08:34:48 UTC


README

TWOH Logo

Build Status License

About Logger

This project contains the basic Implementation of Loggers.

Requirements

  • PHP 8.3 or higher
  • Composer

Installation

composer req twoh/logger

Usage

Override Log File Path

Override the Log File Path to your needs.

LogDirectoryUtility::$logDirectory = __DIR__ . '/../../../logs/';

Override Log Level (by default info)

Override the Log Level to your needs.

LogDirectoryUtility::$currentLogLevel = LogDirectoryUtility::LOG_LEVEL_ERROR;

Override Log File names

Override the Log file names to your needs.

LogDirectoryUtility::$infoLogFileName = 'info.log';
LogDirectoryUtility::$warningLogFileName = 'warning.log';
LogDirectoryUtility::$errorLogFileName = 'error.log';

Logging

This project uses its own LoggerTrait class. You can integrate it into your classes to log messages as follows:

use LoggerTrait;

$this->info('Your message here');
$this->warning('Your message here');
$this->error('Your message here');

The log files will be stored in the logs folder.

Running Tests

To verify that the tests are passing, run the following command:

vendor/bin/phpunit