Documentation ¶
Index ¶
- Variables
- func BpTreeError(a ...interface{}) error
- func Errorf(format string, args ...interface{}) error
- func InvalidKey(a ...interface{}) error
- func Logf(level, format string, args ...interface{})
- func NegativeSize(a ...interface{}) error
- func NotFound(a ...interface{}) error
- func NotFoundInBucket(a ...interface{}) error
- func TSTError(a ...interface{}) error
- type Error
- type ErrorFmter
Constants ¶
This section is empty.
Variables ¶
View Source
var Errors map[string]ErrorFmter = map[string]ErrorFmter{ "not-found": NotFound, "not-found-in-bucket": NotFoundInBucket, "invalid-key": InvalidKey, "tst-error": TSTError, "negative-size": NegativeSize, "bptree-error": BpTreeError, }
View Source
var SkipLogging map[string]bool
Functions ¶
func BpTreeError ¶
func BpTreeError(a ...interface{}) error
func InvalidKey ¶
func InvalidKey(a ...interface{}) error
func NegativeSize ¶
func NegativeSize(a ...interface{}) error
func NotFoundInBucket ¶
func NotFoundInBucket(a ...interface{}) error
Types ¶
type ErrorFmter ¶
type ErrorFmter func(a ...interface{}) error
Click to show internal directories.
Click to hide internal directories.