go-ipfs-config: feat(config) default Log.MaxSizeMB = 500

This commit is contained in:
Brian Tiger Chow 2015-02-02 18:26:47 -08:00
parent 2cca094aa8
commit 4309541e87

View File

@ -41,6 +41,9 @@ func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {
Bootstrap: BootstrapPeerStrings(bootstrapPeers),
Datastore: *ds,
Identity: identity,
Log: Log{
MaxSizeMB: 500,
},
// setup the node mount points.
Mounts: Mounts{
@ -54,7 +57,7 @@ func Init(out io.Writer, nBitsForKeypair int) (*Config, error) {
Gateway: Gateway{
RootRedirect: "",
Writable: false,
Writable: false,
},
}