@@ -91,6 +91,7 @@ func makeapp() *cli.App {
9191 cli.StringFlag {Name : "map" , Value : "hexagon" , Usage : "Name of the map used by the trainer" },
9292 cli.BoolFlag {Name : "no-browser" , Usage : "Disable automatic browser opening at start" },
9393 cli.BoolFlag {Name : "debug" , Usage : "Enable debug logging" },
94+ cli.BoolFlag {Name : "quiet" , Usage : "Decrease verbosity of the output" },
9495 cli.BoolFlag {Name : "profile" , Usage : "Enable execution profiling" },
9596 cli.BoolFlag {Name : "dump-raw-comm" , Usage : "Dump all the communication between the agent and the server" },
9697 cli.IntFlag {Name : "duration" , Usage : "If set, game will stop after this durarion (in seconds)" },
@@ -105,6 +106,7 @@ func makeapp() *cli.App {
105106 mapName := c .String ("map" )
106107 nobrowser := c .Bool ("no-browser" )
107108 isDebug := c .Bool ("debug" )
109+ isQuiet := c .Bool ("quiet" )
108110 shouldProfile := c .Bool ("profile" )
109111 dumpRaw := c .Bool ("dump-raw-comm" )
110112 duration := c .Int ("duration" )
@@ -118,6 +120,7 @@ func makeapp() *cli.App {
118120 recordFile ,
119121 agents ,
120122 isDebug ,
123+ isQuiet ,
121124 mapName ,
122125 shouldProfile ,
123126 dumpRaw ,
0 commit comments