`defaultLoggers` doesn't work with logger with parameters
altrisi opened this issue ยท 0 comments
If a logger has parameters, like counter
, there is no way to set it as a default logger in the defaultLoggers
rule.
This is because the default logger implementation (used for most if not all carpet loggers with options) checks if the entire string between ,
is the name of the logger, without considering options.
fabric-carpet/src/main/java/carpet/logging/Logger.java
Lines 221 to 225 in fca98c7