%PDF- %GIF98; %PNG;
 
Server : ApacheSystem : Linux host.digitalbabaji.in 4.18.0-513.11.1.el8_9.x86_64 #1 SMP Wed Jan 17 02:00:40 EST 2024 x86_64 User : addictionfreeind ( 1003) PHP Version : 7.2.34 Disable Function : exec,passthru,shell_exec,system Directory : /home/addictionfreeind/public_html/admin1/config/  | 
Upload File :  | 
<?php
return [
    /*
     * Enables trimming of big log files.
     */
    'trimming_enabled' => env('LOGCLEANER_TRIMMING_ENABLED', true),
    /*
     * The number of lines to keep in every log when trimming log files.
     * E.g. if you set this to 10000, the 10000 last lines
     * of your laravel logs are kept.
     */
    'log_lines_to_keep' => 1000,
    /*
     * Enables deletion of old log files.
     */
    'deleting_enabled' => env('LOGCLEANER_DELETING_ENABLED', true),
    /*
     * The number of log files to keep when deleting old logs.
     * E.g. if you are using daily logs and you set this to
     * 14, the log files for the last 14 days are kept.
     */
    'log_files_to_keep' => 2,
    /*
     * Filenames that should not be trimmed or deleted. This accepts wildcards.
     * E.g. '*.txt' will keep all text files from being trimmed or deleted.
     */
    'exclude' => [],
];