Comment log levels.

This commit is contained in:
Bruce Marriner 2016-04-26 21:34:01 -05:00
parent 2695ae1b21
commit 852a968873

View file

@ -19,9 +19,17 @@ import (
)
const (
// Logs critical errors that can lead to data loss or panic
LogError int = iota
// Logs very abnormal events
LogWarning
LogNotice
// Logs normal basic activity like connect/disconnects
LogInformational
// Logs detailed activity including all HTTP/Websocket packets.
LogDebug
)