(format string, args ...interface{})
| 100 | } |
| 101 | |
| 102 | func (m *SessionModule) Error(format string, args ...interface{}) { |
| 103 | m.Session.Events.Log(log.ERROR, m.tag+format, args...) |
| 104 | } |
| 105 | |
| 106 | func (m *SessionModule) Fatal(format string, args ...interface{}) { |
| 107 | m.Session.Events.Log(log.FATAL, m.tag+format, args...) |