MCPcopy Create free account
hub / github.com/IceClusters/icmysql / LoadLogs

Function LoadLogs

debug/js/app.js:204–215  ·  view source on GitHub ↗
(logs)

Source from the content-addressed store, hash-verified

202}
203
204function LoadLogs(logs) {
205 $("#logsModalBody").html("");
206 logs.forEach(log => {
207 $("#logsModalBody").append(`
208 <tr>
209 <td style="width:10%">${log.type}</td>
210 <td style="width: 70% !important;">${log.message.replace("^0", "").replace("^1", "").replace("^2", "").replace("^3", "")}</td>
211 <td style="width:20%">${log.solution ? log.solution : "Unavailable"}</td>
212 </tr>
213 `);
214 });
215}
216
217function LoadCache(cache) {
218 $("#cacheModalBody").html("");

Callers 1

app.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected