mirror of
https://github.com/HikariKnight/quickpassthrough.git
synced 2025-05-13 14:44:45 -04:00
12 lines
207 B
Go
12 lines
207 B
Go
package logger
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
// Formats our log output to \n%s\n\n for readability
|
|
func Printf(content string, v ...any) {
|
|
content = fmt.Sprintf("\n%s\n", content)
|
|
log.Printf(content, v...)
|
|
}
|