logger/glog: add SetVmodule

This commit is contained in:
Felix Lange 2016-01-21 13:36:33 +01:00
parent a15b02320e
commit 0edcbc797f
1 changed files with 5 additions and 0 deletions

View File

@ -138,6 +138,11 @@ func SetV(v int) {
logging.verbosity.set(Level(v))
}
// SetVmodule sets the global verbosity patterns.
func SetVmodule(pat string) error {
return logging.vmodule.Set(pat)
}
// SetToStderr sets the global output style
func SetToStderr(toStderr bool) {
logging.toStderr = toStderr