Adding logging proc time inside the table

pull/13/head
Starow 2014-08-11 16:29:38 +02:00
parent a4302b54ad
commit 60cfc9789f
2 changed files with 7 additions and 1 deletions

View File

@ -22,6 +22,7 @@ source.onmessage = function(event) {
function create_log_table(obj_json) {
tableBody = document.getElementById("tab_body")
var tr = document.createElement('TR')
var time = document.createElement('TD')
var chan = document.createElement('TD')
var level = document.createElement('TD')
var scrpt = document.createElement('TD')
@ -56,15 +57,19 @@ function create_log_table(obj_json) {
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]));
level.appendChild(document.createTextNode(chansplit[1]));
scrpt.appendChild(document.createTextNode(parsedmess[0]));
//src.appendChild(document.createTextNode(parsedmess[1]));
pdate.appendChild(document.createTextNode(parsedmess[2]));
nam.appendChild(document.createTextNode(parsedmess[3]));
msage.appendChild(document.createTextNode(parsedmess[4]));
tr.appendChild(time)
tr.appendChild(chan);
tr.appendChild(level);
tr.appendChild(scrpt);

View File

@ -103,6 +103,7 @@
<table class="table table-bordered table-hover table-striped" id="table_log">
<thead>
<tr>
<th>Time</th>
<th>Channel</th>
<th>Level</th>
<th>Script Name</th>