Implement start/stop commands

fix #41
update README and configuration files accordingly
This commit is contained in:
ppom
2023-10-18 12:00:00 +02:00
parent d35167b878
commit 345dd94b17
8 changed files with 127 additions and 77 deletions

View File

@ -69,8 +69,10 @@ func Printf(level Level, format string, args ...any) {
}
func Fatalln(args ...any) {
level := FATAL
log.Fatalln(level.String(), args)
newargs := make([]any, 0)
newargs = append(newargs, FATAL)
newargs = append(newargs, args...)
log.Fatalln(newargs...)
}
func Fatalf(format string, args ...any) {