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

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

There is a newer version: 1.3.0
Show newest version
import { QwcServerLog} from 'qwc-server-log';

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

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

customElements.define('qwc-mailpit-log', QwcMailpitLog);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy