LOG_LVL_DEBUG
= 0LOG_LVL_INFO
= 10LOG_LVL_WARNING
= 20LOG_LVL_ERROR
= 30LOG_LVL_CRITICAL
= 40
LOG_CLR_DEBUG
= CyanLOG_CLR_INFO
= WhiteLOG_CLR_WARNING
= YellowLOG_CLR_ERROR
= RedLOG_CLR_CRITICAL
= Bright Red
CURRENT_LOG_LVL
=LOG_LVL_INFO
DEFAULT_LOG_DST
=1
(stdout)DATE_FMT
="%Y-%m-%d %H:%M:%S"
Purpose:
Logs a message if the current logging level is less than or equal to the provided log level.
Parameters:
lvl
: The numeric log level of the message (LOG_LVL_DEBUG
,LOG_LVL_INFO
, etc.).msg
: The message to log.dst
(Optional): The file descriptor to log to (default: stdout).
Behavior:
- Logs the message to the specified destination if
CURRENT_LOG_LVL <= lvl
. - The log message is color-coded and includes a timestamp.
Example:
log $LOG_LVL_WARNING "This is a warning!"
log $LOG_LVL_DEBUG "This is debug information" 2 # Logs to stderr
Purpose:
Sets the current logging level based on a string input.
Parameters:
string_lvl
: The log level to set. Must be one of the following:"debug"
"info"
"warning"
"error"
"critical"
Behavior:
- Updates the
CURRENT_LOG_LVL
variable to match the corresponding numeric log level. - If an invalid level is passed, no changes are made, and the function exits silently.
Example:
set_log_lvl "debug"
Purpose:
Converts a numeric log level to its corresponding color code.
Parameters:
log_lvl
: The numeric log level.
Returns:
- The color code associated with the provided log level.
Behavior:
- Prints the appropriate color code for the given log level to stdout.
Example:
color=$(log_lvl_to_color $LOG_LVL_WARNING)
echo "$color" # Outputs: Yellow
-
Custom Timestamps:
- Modify the
DATE_FMT
variable to customize the timestamp format. - Set
DATE_FMT=""
to remove timestamps from log messages.
- Modify the
-
Error Handling:
- Ensure all numeric log levels and color codes are correctly defined.
-
Default Destination:
- If
dst
is not specified, logs are sent tostdout
by default.
- If