Open GoogleCodeExporter opened 9 years ago
Adding "-v 1" to the command line should workaround this.
I agree, dbg_level = MSG_ERROR, would be a more sensible choice.
int dbg_level = MSG_INFO;
...
// read only verbosity, to show value
while((c = getopt(argc, argv, “d:g:hl:p:u:v:”)) != -1)
switch(c) {
case 'v': // verbosity
dbg_level = atoi(optarg);
break;
}
Original comment by rolmie@gmail.com
on 17 Feb 2014 at 1:34
Original issue reported on code.google.com by
paulsso...@gmail.com
on 17 Feb 2014 at 9:57