web/data/cubicweb.log.js
author Aurelien Campeas <aurelien.campeas@logilab.fr>
Thu, 05 Jun 2014 16:13:48 +0200
branchstable
changeset 9766 5071b69b6b0b
parent 7995 9a9f35ef418c
permissions -rw-r--r--
[pkg] prepare 3.18.5

// 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]();
    }
}