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...)
|
|
}
|