Selection criteria for logs with include and exclude filters

interface LogSelection {
    exclude?: LogFilter;
    include: LogFilter;
}

Properties

Properties

exclude?: LogFilter

Logs that match this filter will be excluded

include: LogFilter

Logs that match this filter will be included