|
//go:build !debug
|
|
|
|
package main
|
|
|
|
func debugLog(format string, args ...interface{}) {}
|
|
|
|
// JSDebugLog is a no-op in release builds.
|
|
func (a *App) JSDebugLog(msg string) {}
|
|
|
|
// IsDebugMode returns false in release builds.
|
|
func (a *App) IsDebugMode() bool {
|
|
return false
|
|
}
|