webplace/logger

Simple logging system

Installs: 12

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/webplace/logger

1.2.0 2021-09-25 10:30 UTC

This package is auto-updated.

Last update: 2025-12-27 17:15:28 UTC


README

Library provides the ability to easily log the system

Installation

Require webplace/logger using composer.

Usage

<?php

use WebPlace\Logger;

Logger::setLogDirectory('/to_log_directory/');

Logger::writeLog('message to write log');

Logger::writeWarningLog('message to write log');

Logger::writeErrorLog('message to write log');

Logger::writeExceptionLog('message to write log', new Throwable('error'));