cubicweb/web/data/cubicweb.log.js
author Laurent Peuch <cortex@worlddomination.be>
Thu, 05 Dec 2019 02:10:23 +0100
changeset 12796 4fe765f2f155
parent 11057 0b59724cb3f2
permissions -rw-r--r--
[changelog] document the new toolbar panels with screenshots

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