fixed bug that debug not filtered

main
alex 2024-02-24 10:21:36 +01:00
parent 4467557dc7
commit c4a2ea0737
1 changed files with 6 additions and 1 deletions

View File

@ -123,7 +123,12 @@ export default function LogCard({
const logType = log.charAt(0);
// some other logs which have no type defined
if (logType !== "I" && logType !== "W" && logType !== "E") {
if (
logType !== "I" &&
logType !== "D" &&
logType !== "W" &&
logType !== "E"
) {
return true;
}