5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 19:50:15 +08:00

Remove banner from application cli

This commit is contained in:
Lea Anthony 2019-03-10 17:02:36 +11:00
parent 4821ab8597
commit db489a3cae
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405

View File

@ -1,8 +1,6 @@
package wails
import (
"fmt"
"github.com/wailsapp/wails/cmd"
)
@ -21,8 +19,6 @@ func (app *App) setupCli() *cmd.Cli {
// Banner
result.PreRun(func(cli *cmd.Cli) error {
log := cmd.NewLogger()
log.PrintSmallBanner()
fmt.Println()
log.YellowUnderline(app.config.Title + " - Debug Build")
return nil
})