summaryrefslogtreecommitdiffstats
path: root/syslog-status-html.lsp
blob: 62d497f42dbcbb86f464218c34183519b82e6256 (plain)
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
<? local view = ... ?>

<h1>System logging</h1>

<h2>SYSTEM INFO</h2>

<dt>Program version</dt>
<dd><?= view.version ?></dd>

<dt>Process status</dt>
<dd><?= view.status ?></dd>

<? if (view.logfile) then ?>
<dt>Logfile</dt>
<dd><?= view.logfile ?></dd>
<? end ?>

<? if (view.remote) then ?>
<dt>Remote logging to</dt>
<dd><?= view.remote ?></dd>
<? end ?>


<?
--[[ DEBUG INFORMATION
view = ...
require("debugs")
io.write(debugs.variables(view))
--]]
?>