web/data/cubicweb.log.js
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 28 Mar 2013 12:31:39 +0100
brancholdstable
changeset 8820 dbffb6959564
parent 7995 9a9f35ef418c
permissions -rw-r--r--
server/source/native: fix wrong usage of .lstrip that produce garbled error messages (closes #2777641) Fixed an .rstrip(...) for the general case (untested). Fixed an .lstrip(...) for the sqlite path (tested).

// This contains template-specific javascript

function filterLog(domid, thresholdLevel) {
    var logLevels = ["Debug", "Info", "Warning", "Error", "Fatal"]
    var action = "hide";
    for (var idx = 0; idx < logLevels.length; idx++){
        var level = logLevels[idx];
        if (level === thresholdLevel){
            action = "show";
        }
        $('#'+domid+' .log' + level)[action]();
    }
}