Fix main()

This commit is contained in:
Solomon Hykes 2013-11-05 19:57:40 +00:00
parent d3f074494a
commit 5c42b2b512
1 changed files with 2 additions and 2 deletions

View File

@ -86,8 +86,8 @@ func main() {
log.Fatal(err)
}
// Serve api
job := eng.Job("serveapi", flHosts...)
job.Setenv("Logging", true)
job = eng.Job("serveapi", flHosts...)
job.SetenvBool("Logging", true)
if err := job.Run(); err != nil {
log.Fatal(err)
}