mirror of
https://github.com/pgsty/minio.git
synced 2026-03-16 09:36:10 +01:00
453 B
453 B
Logging.
log.Fatalflog.Errorflog.Warnflog.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"
}