handle cases when .idx files are also readonly

adjusting log level
This commit is contained in:
Chris Lu
2013-08-11 11:38:55 -07:00
parent 27f04a382a
commit 7cef280bdc
5 changed files with 27 additions and 17 deletions

View File

@@ -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))
}