mirror of
https://github.com/henrybear327/Proton-API-Bridge.git
synced 2025-12-27 17:28:32 -05:00
10 lines
102 B
Go
10 lines
102 B
Go
package utility
|
|
|
|
import (
|
|
"log"
|
|
)
|
|
|
|
func SetupLog() {
|
|
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
|
}
|