mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-22 10:57:42 +08:00
- Modified Godeps/Godeps.json by hand - [TEST] Updated welcome docs hash to sharness - [TEST] Updated contact doc - [TEST] disabled breaking test (t0080-repo refs local)
52 lines
843 B
Go
52 lines
843 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
eventlog "github.com/ipfs/go-ipfs/thirdparty/eventlog"
|
|
)
|
|
|
|
var log = eventlog.Logger("seccat")
|
|
|
|
func exit(format string, vals ...interface{}) {
|
|
if format != "" {
|
|
fmt.Fprintf(os.Stderr, "seccat: error: "+format+"\n", vals...)
|
|
}
|
|
Usage()
|
|
os.Exit(1)
|
|
}
|
|
|
|
func out(format string, vals ...interface{}) {
|
|
if verbose {
|
|
fmt.Fprintf(os.Stderr, "seccat: "+format+"\n", vals...)
|
|
}
|
|
}
|
|
|
|
type logRW struct {
|
|
n string
|
|
rw io.ReadWriter
|
|
}
|
|
|
|
func (r *logRW) Read(buf []byte) (int, error) {
|
|
n, err := r.rw.Read(buf)
|
|
if err == nil {
|
|
log.Debugf("%s read: %v", r.n, buf)
|
|
}
|
|
return n, err
|
|
}
|
|
|
|
func (r *logRW) Write(buf []byte) (int, error) {
|
|
log.Debugf("%s write: %v", r.n, buf)
|
|
return r.rw.Write(buf)
|
|
}
|
|
|
|
func (r *logRW) Close() error {
|
|
c, ok := r.rw.(io.Closer)
|
|
if ok {
|
|
return c.Close()
|
|
}
|
|
return nil
|
|
}
|