2024-01-04 08:26:42 +00:00
# This script provides a logging function 'log' that can be sourced in other scripts.
# It logs messages to both the terminal and a specified logfile, allowing different log levels.
# The log function takes three parameters: log level, log message, and optionally the logfile. If no logfile is specified, it writes to retrodeck/logs/retrodeck.log
# Example usage:
# log w "foo" -> logs a warning with message foo in the default log file retrodeck/logs/retrodeck.log
# log e "bar" -> logs an error with message bar in the default log file retrodeck/logs/retrodeck.log
# log i "par" rekku.log -> logs an information with message in the specified log file inside the logs folder retrodeck/logs/rekku.log
2024-02-28 17:13:33 +00:00
# if [ "${log_init:-false}" = false ]; then
# logs_folder=${logs_folder:-"/tmp"}
# touch "$logs_folder/retrodeck.log"
# # exec > >(tee "$logs_folder/retrodeck.log") 2>&1 # this is broken, creates strange artifacts and corrupts the log file
# log_init=true
# fi
2024-01-04 16:34:02 +00:00
2024-03-19 21:54:27 +00:00
rd_logs_folder = " $rdhome /logs "
if [ ! -d " $rd_logs_folder " ] ; then
# this is a one off otherwise it would be logging every time this function is called
create_dir " $rd_logs_folder "
fi
2024-01-04 08:26:42 +00:00
log( ) {
2024-01-05 09:59:18 +00:00
# exec > >(tee "$logs_folder/retrodeck.log") 2>&1 # this is broken, creates strange artifacts and corrupts the log file
2024-01-04 08:26:42 +00:00
local level = " $1 "
local message = " $2 "
2024-01-05 09:59:18 +00:00
local timestamp = " $( date +[ %Y-%m-%d\ %H:%M:%S.%3N] ) "
2024-01-04 16:34:02 +00:00
local colorize_terminal
# Use specified logfile or default to retrodeck.log
local logfile
if [ -n " $3 " ] ; then
logfile = " $3 "
else
2024-02-28 19:41:42 +00:00
logfile = " $rd_logs_folder /retrodeck.log "
2024-01-04 16:34:02 +00:00
fi
# Check if the shell is sh (not bash or zsh) to avoid colorization
if [ " ${ SHELL ##*/ } " = "sh" ] ; then
colorize_terminal = false
else
colorize_terminal = true
fi
2024-01-04 08:26:42 +00:00
case " $level " in
w)
2024-01-04 16:34:02 +00:00
if [ " $colorize_terminal " = true ] ; then
# Warning (yellow) for terminal
2024-02-28 15:10:28 +00:00
colored_message = " \e[33m[WARN] $message \e[0m "
2024-01-04 16:34:02 +00:00
else
# Warning (no color for sh) for terminal
colored_message = " $timestamp [WARN] $message "
fi
# Write to log file without colorization
log_message = " $timestamp [WARN] $message "
2024-01-04 08:26:42 +00:00
; ;
e)
2024-01-04 16:34:02 +00:00
if [ " $colorize_terminal " = true ] ; then
# Error (red) for terminal
2024-02-28 15:10:28 +00:00
colored_message = " \e[31m[ERROR] $message \e[0m "
2024-01-04 16:34:02 +00:00
else
# Error (no color for sh) for terminal
colored_message = " $timestamp [ERROR] $message "
fi
# Write to log file without colorization
log_message = " $timestamp [ERROR] $message "
2024-01-04 08:26:42 +00:00
; ;
i)
2024-02-28 15:10:28 +00:00
# Write to log file without colorization for info message
2024-01-04 16:34:02 +00:00
log_message = " $timestamp [INFO] $message "
2024-02-28 15:10:28 +00:00
colored_message = $log_message
2024-01-04 08:26:42 +00:00
; ;
d)
2024-01-04 16:34:02 +00:00
if [ " $colorize_terminal " = true ] ; then
# Debug (green) for terminal
2024-02-28 15:10:28 +00:00
colored_message = " \e[32m[DEBUG] $message \e[0m "
2024-01-04 16:34:02 +00:00
else
# Debug (no color for sh) for terminal
colored_message = " $timestamp [DEBUG] $message "
fi
# Write to log file without colorization
log_message = " $timestamp [DEBUG] $message "
2024-01-04 08:26:42 +00:00
; ;
*)
2024-01-04 16:34:02 +00:00
# Default (no color for other shells) for terminal
colored_message = " $timestamp $message "
# Write to log file without colorization
log_message = " $timestamp $message "
2024-01-04 08:26:42 +00:00
; ;
esac
2024-01-04 16:34:02 +00:00
# Display the message in the terminal
echo -e " $colored_message "
# Write the log message to the log file
2024-02-28 17:13:33 +00:00
if [ ! -f " $logfile " ] ; then
echo " $timestamp [WARN] Log file not found in \" $logfile \", creating it "
touch " $logfile "
fi
2024-01-04 16:34:02 +00:00
echo " $log_message " >> " $logfile "
2024-01-05 09:59:18 +00:00
}
# This function is merging the temporary log file into the actual one
tmplog_merger( ) {
2024-02-28 19:41:42 +00:00
create_dir " $rd_logs_folder "
2024-02-28 17:13:33 +00:00
2024-01-05 09:59:18 +00:00
# Check if /tmp/retrodeck.log exists
2024-02-28 19:41:42 +00:00
if [ -e "/tmp/retrodeck.log" ] && [ -e " $rd_logs_folder /retrodeck.log " ] ; then
2024-01-05 09:59:18 +00:00
# Sort both temporary and existing log files by timestamp
2024-02-28 19:41:42 +00:00
sort -k1,1n -k2,2M -k3,3n -k4,4n -k5,5n "/tmp/retrodeck.log" " $rd_logs_folder /retrodeck.log " > " $rd_logs_folder /merged_logs.tmp "
2024-01-05 09:59:18 +00:00
# Move the merged logs to replace the original log file
2024-02-28 19:41:42 +00:00
mv " $rd_logs_folder /merged_logs.tmp " " $rd_logs_folder /retrodeck.log "
2024-01-05 09:59:18 +00:00
# Remove the temporary file
rm "/tmp/retrodeck.log"
fi
2024-02-16 16:20:52 +00:00
2024-02-28 17:13:33 +00:00
local ESDE_source_logs = "/var/config/ES-DE/logs/es_log.txt"
# Check if the source file exists
if [ -e " $ESDE_source_logs " ] ; then
# Create the symlink in the logs folder
2024-02-28 19:41:42 +00:00
ln -sf " $ESDE_source_logs " " $rd_logs_folder /ES-DE.log "
log i " ES-DE log file linked to \" $rd_logs_folder /ES-DE.log\" "
2024-02-28 17:13:33 +00:00
fi
}