mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-13 01:58:22 +00:00
Adding logging proc time inside the table
This commit is contained in:
parent
a4302b54ad
commit
60cfc9789f
2 changed files with 7 additions and 1 deletions
|
@ -22,6 +22,7 @@ source.onmessage = function(event) {
|
||||||
function create_log_table(obj_json) {
|
function create_log_table(obj_json) {
|
||||||
tableBody = document.getElementById("tab_body")
|
tableBody = document.getElementById("tab_body")
|
||||||
var tr = document.createElement('TR')
|
var tr = document.createElement('TR')
|
||||||
|
var time = document.createElement('TD')
|
||||||
var chan = document.createElement('TD')
|
var chan = document.createElement('TD')
|
||||||
var level = document.createElement('TD')
|
var level = document.createElement('TD')
|
||||||
var scrpt = document.createElement('TD')
|
var scrpt = document.createElement('TD')
|
||||||
|
@ -56,15 +57,19 @@ function create_log_table(obj_json) {
|
||||||
|
|
||||||
src.appendChild(source_link);
|
src.appendChild(source_link);
|
||||||
|
|
||||||
|
var now = new Date();
|
||||||
|
var timepaste = now.getHours() + ":" + now.getMinutes() + ":" + now.getSeconds();
|
||||||
|
|
||||||
|
time.appendChild(document.createTextNode(timepaste));
|
||||||
chan.appendChild(document.createTextNode(chansplit[0]));
|
chan.appendChild(document.createTextNode(chansplit[0]));
|
||||||
level.appendChild(document.createTextNode(chansplit[1]));
|
level.appendChild(document.createTextNode(chansplit[1]));
|
||||||
|
|
||||||
scrpt.appendChild(document.createTextNode(parsedmess[0]));
|
scrpt.appendChild(document.createTextNode(parsedmess[0]));
|
||||||
//src.appendChild(document.createTextNode(parsedmess[1]));
|
|
||||||
pdate.appendChild(document.createTextNode(parsedmess[2]));
|
pdate.appendChild(document.createTextNode(parsedmess[2]));
|
||||||
nam.appendChild(document.createTextNode(parsedmess[3]));
|
nam.appendChild(document.createTextNode(parsedmess[3]));
|
||||||
msage.appendChild(document.createTextNode(parsedmess[4]));
|
msage.appendChild(document.createTextNode(parsedmess[4]));
|
||||||
|
|
||||||
|
tr.appendChild(time)
|
||||||
tr.appendChild(chan);
|
tr.appendChild(chan);
|
||||||
tr.appendChild(level);
|
tr.appendChild(level);
|
||||||
tr.appendChild(scrpt);
|
tr.appendChild(scrpt);
|
||||||
|
|
|
@ -103,6 +103,7 @@
|
||||||
<table class="table table-bordered table-hover table-striped" id="table_log">
|
<table class="table table-bordered table-hover table-striped" id="table_log">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>Time</th>
|
||||||
<th>Channel</th>
|
<th>Channel</th>
|
||||||
<th>Level</th>
|
<th>Level</th>
|
||||||
<th>Script Name</th>
|
<th>Script Name</th>
|
||||||
|
|
Loading…
Reference in a new issue