fix logo mobile background overlap

This commit is contained in:
partisan 2024-08-10 14:10:38 +02:00
parent 2e8fa14df9
commit 7791fa2ab4
3 changed files with 4 additions and 33 deletions

View file

@ -48,23 +48,3 @@ func logMessage(level string, format string, args ...interface{}) {
fmt.Printf("[%s] %s\n", timestamp, message)
}
}
/////////////
func printErrf(format string, args ...interface{}) {
if config.LogLevel >= 1 {
logMessage("ERROR", fmt.Sprintf(format, args...))
}
}
func printWarnf(format string, args ...interface{}) {
if config.LogLevel >= 2 {
logMessage("WARN", fmt.Sprintf(format, args...))
}
}
func printInfof(format string, args ...interface{}) {
if config.LogLevel >= 3 {
logMessage("INFO", fmt.Sprintf(format, args...))
}
}