Logging level question

In a busy graph, this log message is cluttering the logs:

| I0110 22:24:38.315485      16 http.go:243] namespace: 0. Got GraphQL request over HTTP.

Reading dgraph’s imported glog.go:

const (
	infoLog severity = iota
	warningLog
	errorLog
	fatalLog
	numSeverity = 4
)

leads me to believe starting dgraph with --v 1 would suppress this logging (which is at Info level). But that’s not working. Anyone solve this?

What log level is more verbose 1 or 2?

If I want all the logs dgraph can produce, what’s the max verbosity level I can set?

Thanks,
Ryan