pekand/log

log

Installs: 8

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/pekand/log

1.0.1 2020-11-27 16:10 UTC

This package is auto-updated.

Last update: 2025-10-28 03:05:01 UTC


README

Log is simple library for logging to file.

<?php

use pekand\Log\Log;

Log::setAllowedSeverity([
    'INFO', 
    'ERROR', 
    'DEBUG',
]);

Log::setStoragePath(dirname(__FILE__).'/storage/log/');

Log::write('mesage', 'INFO');

License

The Log is open-sourced software licensed under the MIT license.