aboutsummaryrefslogtreecommitdiff
path: root/go
diff options
context:
space:
mode:
Diffstat (limited to 'go')
-rw-r--r--go/glog/convenient_api.go5
-rw-r--r--go/glog/glog_file.go2
-rw-r--r--go/weed/weed.go5
3 files changed, 6 insertions, 6 deletions
diff --git a/go/glog/convenient_api.go b/go/glog/convenient_api.go
index b209c0b5c..ac2c2e7f8 100644
--- a/go/glog/convenient_api.go
+++ b/go/glog/convenient_api.go
@@ -4,9 +4,8 @@ import ()
/*
Copying the original glog because it is missing several convenient methods.
-1. change log file size limit to 180MB
-2. use ToStderrAndLog() in the weed.go
-3. remove nano time in log format
+1. use ToStderrAndLog() in the weed.go
+2. remove nano time in log format
*/
func ToStderr() {
diff --git a/go/glog/glog_file.go b/go/glog/glog_file.go
index 8c744bc51..8dcb2bc08 100644
--- a/go/glog/glog_file.go
+++ b/go/glog/glog_file.go
@@ -31,7 +31,7 @@ import (
)
// MaxSize is the maximum size of a log file in bytes.
-var MaxSize uint64 = 1024 * 1024 * 180
+var MaxSize uint64 = 1024 * 1024 * 1800
// logDirs lists the candidate directories for new log files.
var logDirs []string
diff --git a/go/weed/weed.go b/go/weed/weed.go
index a2e670b29..57fe62281 100644
--- a/go/weed/weed.go
+++ b/go/weed/weed.go
@@ -1,11 +1,11 @@
package main
import (
+ "code.google.com/p/weed-fs/go/glog"
"encoding/json"
"flag"
"fmt"
"io"
- "code.google.com/p/weed-fs/go/glog"
"math/rand"
"net/http"
"os"
@@ -42,7 +42,8 @@ func setExitStatus(n int) {
}
func main() {
- glog.ToStderrAndLog()
+ glog.ToStderrAndLog()
+ glog.MaxSize = 1024 * 1024 * 32
rand.Seed(time.Now().UnixNano())
flag.Usage = usage
flag.Parse()