mirror of https://github.com/ledisdb/ledisdb.git
change log name suffix format
This commit is contained in:
parent
654a0a4704
commit
0d4949f060
|
@ -51,6 +51,7 @@ func (cfg *BinLogConfig) adjust() {
|
||||||
cfg.IndexName = "ledis"
|
cfg.IndexName = "ledis"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//binlog not care space limit
|
||||||
cfg.SpaceLimit = -1
|
cfg.SpaceLimit = -1
|
||||||
|
|
||||||
cfg.LogType = "bin"
|
cfg.LogType = "bin"
|
||||||
|
|
|
@ -145,7 +145,7 @@ func (l *Log) loadIndex() error {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Log) getLogFile() string {
|
func (l *Log) getLogFile() string {
|
||||||
return fmt.Sprintf("%s-%s.%05d", l.cfg.BaseName, l.cfg.LogType, l.lastLogIndex)
|
return fmt.Sprintf("%s-%s.%07d", l.cfg.BaseName, l.cfg.LogType, l.lastLogIndex)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Log) openNewLogFile() error {
|
func (l *Log) openNewLogFile() error {
|
||||||
|
|
|
@ -28,6 +28,7 @@ func (cfg *RelayLogConfig) adjust() {
|
||||||
cfg.IndexName = "ledis"
|
cfg.IndexName = "ledis"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//relaylog not care file num
|
||||||
cfg.MaxFileNum = -1
|
cfg.MaxFileNum = -1
|
||||||
cfg.LogType = "relay"
|
cfg.LogType = "relay"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue