aboutsummaryrefslogtreecommitdiff
path: root/go/weed/volume_test.go
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2013-08-11 11:38:55 -0700
committerChris Lu <chris.lu@gmail.com>2013-08-11 11:38:55 -0700
commit7cef280bdc77099e0048692893f440038c8cc0cb (patch)
tree3ca2932cd752172e8959b212c3713810aa7e90f2 /go/weed/volume_test.go
parent27f04a382ad3790ab97106f3a86d19b47f79fb85 (diff)
downloadseaweedfs-7cef280bdc77099e0048692893f440038c8cc0cb.tar.xz
seaweedfs-7cef280bdc77099e0048692893f440038c8cc0cb.zip
handle cases when .idx files are also readonly
adjusting log level
Diffstat (limited to 'go/weed/volume_test.go')
-rw-r--r--go/weed/volume_test.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/go/weed/volume_test.go b/go/weed/volume_test.go
index 601d8aaf5..2499d8543 100644
--- a/go/weed/volume_test.go
+++ b/go/weed/volume_test.go
@@ -1,11 +1,12 @@
package main
import (
+ "code.google.com/p/weed-fs/go/glog"
"net/http"
"testing"
"time"
)
func TestXYZ(t *testing.T) {
- glog.V(4).Infoln("Last-Modified", time.Unix(int64(1373273596), 0).UTC().Format(http.TimeFormat))
+ glog.V(0).Infoln("Last-Modified", time.Unix(int64(1373273596), 0).UTC().Format(http.TimeFormat))
}