Merge pull request #10193 from vbatts/vbatts-dm_logging
devmapper: initialize log levels
This commit is contained in:
commit
bfb4954a1f
1 changed files with 11 additions and 0 deletions
11
devicemapper/log.go
Normal file
11
devicemapper/log.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package devicemapper
|
||||
|
||||
// definitions from lvm2 lib/log/log.h
|
||||
const (
|
||||
LogLevelFatal = 2 + iota // _LOG_FATAL
|
||||
LogLevelErr // _LOG_ERR
|
||||
LogLevelWarn // _LOG_WARN
|
||||
LogLevelNotice // _LOG_NOTICE
|
||||
LogLevelInfo // _LOG_INFO
|
||||
LogLevelDebug // _LOG_DEBUG
|
||||
)
|
Loading…
Reference in a new issue