Msg prints a message with optional arguments, that can be printed, of varying types using the Default Messenger.
(msg string, args ...interface{})
| 192 | // Msg prints a message with optional arguments, that can be printed, of |
| 193 | // varying types using the Default Messenger. |
| 194 | func Msg(msg string, args ...interface{}) { |
| 195 | Default.Msg(msg, args...) |
| 196 | } |
| 197 | |
| 198 | // Puts formats a message and then prints to Stdout. |
| 199 | // |