1
0
Fork 0

Fix banner format

This commit is contained in:
Gregory Eremin 2014-09-11 23:13:11 +04:00
parent 3d98c84548
commit 1735f11058
1 changed files with 4 additions and 4 deletions

View File

@ -42,10 +42,10 @@ func main() {
os.Exit(0)
}()
fmt.Println("Burlesque v%s started", version)
fmt.Println("GOMAXPROCS is set to %d", runtime.GOMAXPROCS(-1))
fmt.Println("Storage path: %s", config.storage)
fmt.Println("Server is running at http://127.0.0.1:%d", config.port)
fmt.Printf("Burlesque v%s started\n", version)
fmt.Printf("GOMAXPROCS is set to %d\n", runtime.GOMAXPROCS(-1))
fmt.Printf("Storage path: %s\n", config.storage)
fmt.Printf("Server is running at http://127.0.0.1:%d\n", config.port)
theHub = hub.New(store)