WriteLog writes a string to the log buffer
(s string)
| 1464 | |
| 1465 | // WriteLog writes a string to the log buffer |
| 1466 | func WriteLog(s string) { |
| 1467 | LogBuf.EventHandler.Insert(LogBuf.End(), s) |
| 1468 | } |
| 1469 | |
| 1470 | // GetLogBuf returns the log buffer |
| 1471 | func GetLogBuf() *Buffer { |