feat: initial commit

This commit is contained in:
Simon Cornet 2025-03-06 11:25:38 +01:00
commit 693724d3b8
7 changed files with 116 additions and 0 deletions

25
cmd/logger/logging.go Normal file
View file

@ -0,0 +1,25 @@
package logging
import (
"log"
)
// Prints the formatted log, taking both a message (string) and optionally
// an error as inputs.
func Print(message string, err error) {
if debug {
log.Printf(applicationName+" | LOG: %v\n", message)
if err != nil {
log.Printf(applicationName+" | ERROR: %v\n", err)
}
}
}
// Prints the fatal error and exits the application. Takes both the message and
// optionally an error as inputs.
func Fatal(message string, err error) {
log.Fatalf(applicationName+" | FATAL: %v\n", message)
if err != nil {
log.Fatalf(applicationName+" | ERROR: %v\n", err)
}
}