814

Product support

Get help in the plugin support forum.

  • Added on Oct 20, 2024
  • Current version: 1.0.1
  • Platform Compatibility
    v3.x use latest
    v2.x not tested
    v1.x not tested
  • Created by

Categories

Simple October CMS Logger plugin that allows you to log information wherever needed. The plugin is configured through code and includes a navigation panel in the administration area. There you can view, delete and filter your logs.

October CMS Logger

1. Check config and configure

<?php

return [
    'debugEnabled' => env('APP_DEBUG', true)
];

2. Configure project enviroment

APP_DEBUG=true

3. Use Logger class

use Tober\Logger\Classes\Services\Logger;

Logger::info($message);
Logger::warn([$firstLine, $secondLine, $thirdLine]);
Logger::error($message, $exception);
1.0.1

First version of Tober.Logger

Sep 28, 2024