
ADD: * `iox` subpackage FIX: * `logging` now has a way to return logWritier directly * added significant `io.*` interface compat to logWriter -- allowing a `logging.Logger` to essentially be used for a large amount of io interaction in other libraries.
10 lines
123 B
Go
10 lines
123 B
Go
package iox
|
|
|
|
import (
|
|
`errors`
|
|
)
|
|
|
|
var (
|
|
ErrBufTooSmall error = errors.New("buffer too small; buffer size must be > 0")
|
|
)
|