mirror of
https://github.com/etcd-io/bbolt.git
synced 2025-04-27 13:12:47 +00:00
15 lines
183 B
Go
15 lines
183 B
Go
package bolt
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func warn(v ...interface{}) {
|
|
fmt.Fprintln(os.Stderr, v...)
|
|
}
|
|
|
|
func warnf(msg string, v ...interface{}) {
|
|
fmt.Fprintf(os.Stderr, msg, v...)
|
|
}
|