semihsemih/logie

PHP library for logging

Maintainers

Package info

github.com/semihsemih/logie

pkg:composer/semihsemih/logie

Statistics

Installs: 0

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

dev-main 2023-01-02 19:32 UTC

This package is auto-updated.

Last update: 2026-03-01 00:40:48 UTC


README

Logo

This library implements the PSR-3 interface that you can type-hint against in your own libraries to keep a maximum of interoperability.

Installation

Install the latest version with

composer require semihsemih/logie

Usage

$handler = new Logie\Handler\FileHandler($logFileName);
$logger = new Logie\Logger($handler);
$logger->log(LogLevel::INFO, 'an info has occurred.');