Print tail of logs in /var/log/lighttpd in debug run as well

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König 2020-10-02 21:04:27 +02:00
parent fa0815fb1d
commit c628c970ae
1 changed files with 1 additions and 1 deletions

View File

@ -1027,7 +1027,7 @@ list_files_in_dir() {
# Check if the file we want to view has a limit (because sometimes we just need a little bit of info from the file, not the entire thing)
case "${dir_to_parse}/${each_file}" in
# If it's Web server error log, just give the first 25 lines
"${PIHOLE_WEB_SERVER_ERROR_LOG_FILE}") make_array_from_file "${dir_to_parse}/${each_file}" 25
"${PIHOLE_WEB_SERVER_ERROR_LOG_FILE}") head_tail_log "${dir_to_parse}/${each_file}" 25
;;
# Same for the FTL log
"${PIHOLE_FTL_LOG}") head_tail_log "${dir_to_parse}/${each_file}" 35