WIP: updated log level on some log entries and added environment variable expansion for command line and its arguments

This commit is contained in:
2025-05-26 17:17:20 +10:00
parent 2474d3cddf
commit 1827cf2e3e
14 changed files with 242 additions and 116 deletions

View File

@@ -7,13 +7,15 @@ type Content interface {
Err(error) Content
}
type Level interface {
type LogLevel interface {
Info() Content
Warn() Content
Error() Content
Fatal() Content
Debug() Content
Trace() Content
}
type Log interface {
Level
LogLevel
}