All Downloads are FREE. Search and download functionalities are using the official Maven repository.

dev-ui.qwc-quinoa-log.js Maven / Gradle / Ivy

import { QwcServerLog} from 'qwc-server-log';

/**
 * This component filter the log to only show Quinoa related entries.
 */
export class QwcQuinoaLog extends QwcServerLog {

    doLogEntry(entry){
        if (entry.loggerName && entry.loggerName.includes("quinoa")) {
            return true;
        }
        return false;
    }
}

customElements.define('qwc-quinoa-log', QwcQuinoaLog);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy