docs: Move developer docs from top-level to its own directory. (#1642)

This commit is contained in:
Harshavardhana
2016-05-14 02:47:16 -07:00
parent 025054fb36
commit 74c23a3544
7 changed files with 50 additions and 24 deletions
+30
View File
@@ -0,0 +1,30 @@
### Logging.
- `log.Fatalf`
- `log.Errorf`
- `log.Warnf`
- `log.Infof`
Logging is enabled across the codebase. There are three types of logging supported.
- console
- file
- syslog
Sample logger section from `~/.minio/config.json`
```
"console": {
"enable": true,
"level": "error"
},
"file": {
"enable": false,
"fileName": "",
"level": "trace"
},
"syslog": {
"enable": false,
"address": "",
"level": "info"
}
```