adam-gui/vendor/fyne.io/fyne/v2/log.go

22 lines
435 B
Go
Raw Permalink Normal View History

2024-04-29 19:13:50 +02:00
package fyne
import (
"log"
"runtime"
)
// LogError reports an error to the command line with the specified err cause,
// if not nil.
// The function also reports basic information about the code location.
func LogError(reason string, err error) {
log.Println("Fyne error: ", reason)
if err != nil {
log.Println(" Cause:", err)
}
_, file, line, ok := runtime.Caller(1)
if ok {
log.Printf(" At: %s:%d", file, line)
}
}