fix logo mobile background overlap
This commit is contained in:
parent
2e8fa14df9
commit
7791fa2ab4
3 changed files with 4 additions and 33 deletions
20
printing.go
20
printing.go
|
@ -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...))
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue