(msg, details, type)
| 79 | } |
| 80 | |
| 81 | log(msg, details, type) |
| 82 | { |
| 83 | if(this.logs.length>50) |
| 84 | this.logs.splice(0, 1); |
| 85 | |
| 86 | this.logs.push({msg:msg, type:type, details:details}); |
| 87 | if(this.outputUI!=null) |
| 88 | this.outputUI.update(); |
| 89 | if(this.footerUI!=null) |
| 90 | this.footerUI.forceUpdate(); |
| 91 | } |
| 92 | |
| 93 | getUniqueID() |
| 94 | { |
no test coverage detected