forked from ubiquity/ubiquibot-logging
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (43 loc) · 1.23 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Log Viewer</title>
<link rel="stylesheet" href="./styles/index.css" />
</head>
<body>
<div class="log-container">
<select id="filter">
<option value="all">All</option>
<option value="error">Error</option>
<option value="warn">Warning</option>
<option value="info">Info</option>
<option value="verbose">Verbose</option>
<option value="debug">Debug</option>
</select>
<button id="clear">Clear</button>
</div>
<table id="log-table">
<thead>
<tr>
<th>Message</th>
<th>Level</th>
<th>Timestamp</th>
<th>Comment URL</th>
</tr>
</thead>
<tbody id="log-body"></tbody>
</table>
<div id="json-modal" class="modal">
<div class="modal-content">
<span id="close-modal" class="close">×</span>
<pre id="json-content" class="json-content"></pre>
</div>
</div>
<script>
var exports = {};
</script>
<script type="application/javascript" src="./scripts/index.js"></script>
</body>
</html>