semihsemih/logie

PHP library for logging

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/semihsemih/logie

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

This package is auto-updated.

Last update: 2025-09-29 02:44:19 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.');