FastV similarly to V checks if verbosity level is enough to print the log message. It is a fast inline function that doesn't take vmodule into account. As such, it is intended to be used for the datapath, primarily.
(level Level, smodule uint8)
| 999 | // message. It is a fast inline function that doesn't take vmodule into account. |
| 1000 | // As such, it is intended to be used for the datapath, primarily. |
| 1001 | func FastV(level Level, smodule uint8) Verbose { |
| 1002 | return Verbose(logging.verbosity.get() >= level || smodules[smodule] >= level) |
| 1003 | } |
| 1004 | |
| 1005 | // SetV sets verbosity level for static module. |
| 1006 | // |