We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0880192 commit 8115dcbCopy full SHA for 8115dcb
cluster.go
@@ -154,7 +154,7 @@ func NewCluster(
154
cache: cache,
155
156
disabled: make(chan struct{}, 0),
157
- fileset: make(map[string]int64, 0),
+ fileset: make(map[string]int64, 0),
158
159
downloading: make(map[string]chan error),
160
main.go
@@ -115,6 +115,11 @@ func main() {
115
}()
116
defer log.RecordPanic()
117
log.StartFlushLogFile()
118
+ if config.Advanced.DebugLog {
119
+ log.SetLevel(log.LevelDebug)
120
+ } else {
121
+ log.SetLevel(log.LevelInfo)
122
+ }
123
124
// override the osExit inside main function
125
osExit := func(n int) {
0 commit comments