cubicweb/web/data/cubicweb.log.js
author Philippe Pepiot <philippe.pepiot@logilab.fr>
Tue, 10 Dec 2019 17:14:56 +0100
changeset 12800 3e2e04447bf5
parent 11057 0b59724cb3f2
permissions -rw-r--r--
[pkg] Version 3.27.0rc2

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