Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 766 Bytes

1.Requirements.md

File metadata and controls

29 lines (20 loc) · 766 Bytes

Requirements

Server Requirements

The LogViewer package has a few system requirements:

- PHP >= 5.6

Application Requirements

LogViewer support only the daily log handler, so make sure that you log handler is set to daily instead of single:

// config\app.php
return [
    ...

    /*--------------------------------------------------------------------------
     | Logging Configuration
     |--------------------------------------------------------------------------
     | Available Settings: "single", "daily", "syslog", "errorlog"
     */
    'log' => 'daily',

    ...
];

Laravel uses the Monolog PHP logging library. This gives you a variety of powerful log handlers/formatters to utilize.