summaryrefslogtreecommitdiff
path: root/pkg/devicemapper/log.go
blob: dd330ba4f84950c80659c70d669dfabe1720e591 (plain)
1
2
3
4
5
6
7
8
9
10
11
package devicemapper // import "github.com/docker/docker/pkg/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
)