diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index c691cf3ca0c1ccce95643c7997cb34b3b190572a..6a5ffd8ad8fe6a957732c058c448ceec7e2692d8 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -262,16 +262,16 @@ "ImportPath": "golang.org/x/net/context", "Rev": "ff8eb9a34a5cbb9941ffc6f84a19a8014c2646ad" }, - { - "ImportPath": "gopkg.in/cryptix/lumberjack.v2", - "Comment": "v1.0-13-gb9ca6a4", - "Rev": "b9ca6a494a971c67b412b38c88ccdbc096d1c9af" - }, { "ImportPath": "gopkg.in/fsnotify.v1", "Comment": "v1.2.0", "Rev": "96c060f6a6b7e0d6f75fddd10efeaca3e5d1bcb0" }, + { + "ImportPath": "gopkg.in/natefinch/lumberjack.v2", + "Comment": "v1.0-12-gd28785c", + "Rev": "d28785c2f27cd682d872df46ccd8232843629f54" + }, { "ImportPath": "gopkg.in/tomb.v1", "Rev": "dd632973f1e7218eb1089048e0798ec9ae7dceb8" diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/.gitignore b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/.gitignore similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/.gitignore rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/.gitignore diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/LICENSE b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/LICENSE similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/LICENSE rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/LICENSE diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/README.md b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/README.md similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/README.md rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/README.md diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/chown.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/chown.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/chown.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/chown.go diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/chown_linux.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/chown_linux.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/chown_linux.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/chown_linux.go diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/example_test.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/example_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/example_test.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/example_test.go diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/linux_test.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/linux_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/linux_test.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/linux_test.go diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/lumberjack.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/lumberjack.go similarity index 98% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/lumberjack.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/lumberjack.go index af30d2c1606f6f26789198d6f1e92c419d7f51f3..2e5d28302ca3699bde4d8fe72119a3f45d749972 100644 --- a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/lumberjack.go +++ b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/lumberjack.go @@ -22,7 +22,6 @@ package lumberjack import ( - "bufio" "fmt" "io" "io/ioutil" @@ -95,7 +94,6 @@ type Logger struct { size int64 file *os.File - bw *bufio.Writer mu sync.Mutex } @@ -139,7 +137,7 @@ func (l *Logger) Write(p []byte) (n int, err error) { } } - n, err = l.bw.Write(p) + n, err = l.file.Write(p) l.size += int64(n) return n, err @@ -157,11 +155,6 @@ func (l *Logger) close() error { if l.file == nil { return nil } - - if err := l.bw.Flush(); err != nil { - return err - } - err := l.file.Close() l.file = nil return err @@ -226,7 +219,6 @@ func (l *Logger) openNew() error { return fmt.Errorf("can't open new logfile: %s", err) } l.file = f - l.bw = bufio.NewWriter(l.file) l.size = 0 return nil } @@ -266,7 +258,6 @@ func (l *Logger) openExistingOrNew(writeLen int) error { file, err := os.OpenFile(filename, os.O_APPEND|os.O_WRONLY, 0644) if err == nil { l.file = file - l.bw = bufio.NewWriter(l.file) l.size = info.Size() return nil } diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/lumberjack_test.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/lumberjack_test.go similarity index 97% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/lumberjack_test.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/lumberjack_test.go index 74e2fa3a13f31e930cc623873ff6de33c5614a26..e9984f807ce98c5498eb7b51cb55555dec4f6ff7 100644 --- a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/lumberjack_test.go +++ b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/lumberjack_test.go @@ -41,7 +41,6 @@ func TestNewFile(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(logFile(dir), n, t) fileCount(dir, 1, t) } @@ -66,7 +65,6 @@ func TestOpenExisting(t *testing.T) { isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) // make sure the file got appended existsWithLen(filename, len(data)+n, t) @@ -108,7 +106,6 @@ func TestMakeLogDir(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(logFile(dir), n, t) fileCount(dir, 1, t) } @@ -125,7 +122,6 @@ func TestDefaultFilename(t *testing.T) { isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(filename, n, t) } @@ -146,7 +142,6 @@ func TestAutoRotate(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(filename, n, t) fileCount(dir, 1, t) @@ -157,7 +152,6 @@ func TestAutoRotate(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b2), n, t) - isNil(l.bw.Flush(), t) // the old logfile should be moved aside and the main logfile should have // only the last write in it. @@ -193,7 +187,6 @@ func TestFirstWriteRotate(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(filename, n, t) existsWithLen(backupFile(dir), len(start), t) @@ -218,7 +211,6 @@ func TestMaxBackups(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(filename, n, t) fileCount(dir, 1, t) @@ -230,7 +222,6 @@ func TestMaxBackups(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b2), n, t) - isNil(l.bw.Flush(), t) // this will use the new fake time secondFilename := backupFile(dir) @@ -247,7 +238,6 @@ func TestMaxBackups(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b2), n, t) - isNil(l.bw.Flush(), t) // this will use the new fake time thirdFilename := backupFile(dir) @@ -290,7 +280,6 @@ func TestMaxBackups(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b2), n, t) - isNil(l.bw.Flush(), t) // this will use the new fake time fourthFilename := backupFile(dir) @@ -337,7 +326,6 @@ func TestMaxAge(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(filename, n, t) fileCount(dir, 1, t) @@ -349,7 +337,6 @@ func TestMaxAge(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b2), n, t) - isNil(l.bw.Flush(), t) existsWithLen(backupFile(dir), len(b), t) // we need to wait a little bit since the files get deleted on a different @@ -372,7 +359,6 @@ func TestMaxAge(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b3), n, t) - isNil(l.bw.Flush(), t) existsWithLen(backupFile(dir), len(b2), t) // we need to wait a little bit since the files get deleted on a different @@ -468,7 +454,6 @@ func TestLocalTime(t *testing.T) { n2, err := l.Write(b2) isNil(err, t) equals(len(b2), n2, t) - isNil(l.bw.Flush(), t) existsWithLen(logFile(dir), n2, t) existsWithLen(backupFileLocal(dir), n, t) @@ -491,7 +476,6 @@ func TestRotate(t *testing.T) { n, err := l.Write(b) isNil(err, t) equals(len(b), n, t) - isNil(l.bw.Flush(), t) existsWithLen(filename, n, t) fileCount(dir, 1, t) @@ -527,7 +511,6 @@ func TestRotate(t *testing.T) { n, err = l.Write(b2) isNil(err, t) equals(len(b2), n, t) - isNil(l.Close(), t) // this will use the new fake time existsWithLen(filename, n, t) diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/rotate_test.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/rotate_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/rotate_test.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/rotate_test.go diff --git a/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/testing_test.go b/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/testing_test.go similarity index 100% rename from Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2/testing_test.go rename to Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2/testing_test.go diff --git a/thirdparty/eventlog/option.go b/thirdparty/eventlog/option.go index e5680e0189080ccdd6f41bfff231ca3662420572..a04ab7b3c225edac7e18d10b74fe16584f42c997 100644 --- a/thirdparty/eventlog/option.go +++ b/thirdparty/eventlog/option.go @@ -5,7 +5,7 @@ import ( "os" "github.com/ipfs/go-ipfs/Godeps/_workspace/src/github.com/Sirupsen/logrus" - "github.com/ipfs/go-ipfs/Godeps/_workspace/src/gopkg.in/cryptix/lumberjack.v2" + "github.com/ipfs/go-ipfs/Godeps/_workspace/src/gopkg.in/natefinch/lumberjack.v2" ) // init sets up sane defaults