ReportNotifyInfo reports notify information with level and info
(level int32, info string)
| 38 | |
| 39 | // ReportNotifyInfo reports notify information with level and info |
| 40 | func (n *NotifyHelper) ReportNotifyInfo(level int32, info string) { |
| 41 | n.tm.ELevel = notifyf.NOTIFYLEVEL(level) |
| 42 | n.tm.SMessage = info |
| 43 | TLOG.Debug(n.tm) |
| 44 | if err := n.tn.ReportNotifyInfo(&n.tm, n.comm.Client.Context()); err != nil { |
| 45 | TLOG.Errorf("ReportNotifyInfo err: %v", err) |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | // ReportNotifyInfo reports notify information with level and info |
| 50 | func ReportNotifyInfo(level int32, info string) { |
nothing calls this directly
no test coverage detected