go-ipfs-config: feat(fsrepo) add eventlog config to repo/config struct

This commit is contained in:
Brian Tiger Chow 2015-02-02 17:42:54 -08:00
parent 9adf5bc2bf
commit 2cca094aa8
2 changed files with 9 additions and 0 deletions

View File

@ -24,6 +24,7 @@ type Config struct {
Bootstrap []string // local nodes's bootstrap peer addresses
Tour Tour // local node's tour position
Gateway Gateway // local node's gateway server options
Log Log
}
const (

8
config/log.go Normal file
View File

@ -0,0 +1,8 @@
package config
type Log struct {
MaxSizeMB uint64
MaxBackups uint64
MaxAgeDays uint64
}