ignore javafx-svg warnings

This commit is contained in:
Bixilon 2022-04-25 00:41:43 +02:00
parent 51b0454006
commit 9cf6c74bd8
No known key found for this signature in database
GPG Key ID: 5CAD791931B09AC4

View File

@ -29,6 +29,9 @@ class LogPrintStream(
if (string.startsWith("ERROR StatusLogger Log4j2")) {
return
}
if (string.startsWith("Unknown element") && string.endsWith("):")) {
return
}
Log.log(message = string, type = type, level = level)
}
}