node, rpc/api: add debug_vmodule, move admin_verbosity to debug_verbosity

This commit is contained in:
Felix Lange
2016-01-21 13:36:50 +01:00
parent 0edcbc797f
commit e4d794851b
5 changed files with 18 additions and 41 deletions

View File

@ -138,6 +138,11 @@ func (api *PrivateDebugAPI) Verbosity(level int) {
glog.SetV(level)
}
// Vmodule updates the node's logging verbosity pattern.
func (api *PrivateDebugAPI) Vmodule(pattern string) error {
return glog.SetVmodule(pattern)
}
// PublicDebugAPI is the collection of debugging related API methods exposed over
// both secure and unsecure RPC channels.
type PublicDebugAPI struct {