Broken bullshit

This commit is contained in:
2025-02-14 13:35:09 +01:00
parent a1aeb71512
commit 53cc9bca6b
20 changed files with 590 additions and 207 deletions

16
logging/logging.go Normal file
View File

@ -0,0 +1,16 @@
package logging
import (
"log"
"os"
)
var (
Info *log.Logger
Error *log.Logger
)
func init() {
Info = log.New(os.Stdout, "INFO: ", log.Ldate|log.Ltime|log.Lshortfile)
Error = log.New(os.Stderr, "ERROR: ", log.Ldate|log.Ltime|log.Lshortfile)
}