mirror of
https://github.com/minio/minio.git
synced 2024-12-25 22:55:54 -05:00
9472299308
This patch brings in the removal of debug logging altogether, instead we bring in the functionality of being able to trace the errors properly pointing back to the origination of the problem. To enable tracing you need to enable "MINIO_TRACE" set to "1" or "true" environment variable which would print back traces whenever there is an error which is unhandled or at the handler layer. By default this tracing is turned off and only user level logging is provided.
29 lines
487 B
Markdown
29 lines
487 B
Markdown
### Logging.
|
|
|
|
- `fatalIf` - wrapper function which takes error and prints jsonic error messages.
|
|
- `errorIf` - similar to fatalIf but doesn't exit on err != nil.
|
|
|
|
Supported logging targets.
|
|
|
|
- console
|
|
- file
|
|
- syslog
|
|
|
|
Sample logger section from `~/.minio/config.json`
|
|
```
|
|
"console": {
|
|
"enable": true,
|
|
"level": "error"
|
|
},
|
|
"file": {
|
|
"enable": false,
|
|
"fileName": "",
|
|
"level": "error"
|
|
},
|
|
"syslog": {
|
|
"enable": false,
|
|
"address": "",
|
|
"level": "error"
|
|
}
|
|
```
|