This commit is contained in:
DeveloperDurp 2024-09-02 13:43:01 -05:00
parent 35fa88b45b
commit 9f6d8ac621
13 changed files with 3 additions and 4 deletions

View file

@ -1,15 +0,0 @@
package logger
import "github.com/charmbracelet/log"
func LogInfo(message string) {
log.Printf("INFO", message)
}
func LogWarning(message string) {
log.Printf("WARN - %v", message)
}
func LogError(message string) {
log.Printf("ERROR - %v", message)
}