cubicweb/web/data/cubicweb.log.js
author Sylvain Thénault <sylvain.thenault@logilab.fr>
Wed, 22 Jun 2016 17:13:10 +0200
changeset 11358 179b5ff3f428
parent 11057 0b59724cb3f2
permissions -rw-r--r--
Update to yams 0.44 API

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