Info is used to log mildly significant events. Should be used to inform about somewhat bigger or user affecting events that happen.
(msg string)
| 113 | |
| 114 | // Info is used to log mildly significant events. Should be used to inform about somewhat bigger or user affecting events that happen. |
| 115 | func Info(msg string) { |
| 116 | if fastcheck(InfoLevel) { |
| 117 | log(InfoLevel, msg, nil) |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | // Infof is used to log mildly significant events. Should be used to inform about somewhat bigger or user affecting events that happen. |
| 122 | func Infof(format string, things ...interface{}) { |