diff options
Diffstat (limited to 'node/api.go')
-rw-r--r-- | node/api.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/node/api.go b/node/api.go index a44ee16c0..909329e57 100644 --- a/node/api.go +++ b/node/api.go @@ -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 { |