fixed bug that debug not filtered
parent
4467557dc7
commit
c4a2ea0737
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue