git-svn-id: https://192.168.0.254/svn/Proyectos.Incam_SGD/tags/3.7.0.2_original@1 eb19766c-00d9-a042-a3a0-45cb8ec72764
21 lines
557 B
JavaScript
21 lines
557 B
JavaScript
/*
|
|
// once site is in production, rather use:
|
|
|
|
function simpleLog(severity, item) { ; }
|
|
|
|
*/
|
|
|
|
// inline logger
|
|
function simpleLog(severity,item) {
|
|
var logTable = getElement('brad-log');
|
|
if (logTable == null) return ;
|
|
|
|
// we have a table, do the log.
|
|
newRow = createDOM('TR', {'class':'logtable','valign':'top'},
|
|
TD({'class':'severity-'+severity}, severity),
|
|
TD({'class':'timestamp'},toISOTime(new Date())),
|
|
TD({'class':'explanation'}, item)
|
|
);
|
|
logTable.getElementsByTagName('tbody')[0].appendChild(newRow);
|
|
}
|