mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-07 01:10:02 +08:00
15 lines
358 B
Go
15 lines
358 B
Go
//go:build !production
|
|
|
|
package assetserver
|
|
|
|
func (a *AssetServer) LogDetails() {
|
|
var info = []any{
|
|
"middleware", a.options.Middleware != nil,
|
|
"handler", a.options.Handler != nil,
|
|
}
|
|
if devServerURL := GetDevServerURL(); devServerURL != "" {
|
|
info = append(info, "devServerURL", devServerURL)
|
|
}
|
|
a.options.Logger.Info("AssetServer Info:", info...)
|
|
}
|