So for testing I use this piece of code:
array<LogLevel> allLogLevels = new array<LogLevel>; SCR_Enum.GetEnumValues(LogLevel, allLogLevels); foreach(LogLevel logLevel : allLogLevels) { Print("loglevel print " + SCR_Enum.GetEnumName(LogLevel, logLevel), logLevel); }
It prints only Normal, Warning, Error and Fatal, although I had selected all filters.
It would be nice to add the other log level's as well (especially Debug).