(format string, args ...interface{})
| 104 | } |
| 105 | |
| 106 | func (m *SessionModule) Fatal(format string, args ...interface{}) { |
| 107 | m.Session.Events.Log(log.FATAL, m.tag+format, args...) |
| 108 | } |
| 109 | |
| 110 | func (m *SessionModule) Printf(format string, a ...interface{}) { |
| 111 | m.Session.Events.Printf(format, a...) |