You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (!LanguageAccessor.ENGINE.isKnownLoggerId(id)) {
1050
-
thrownewIllegalArgumentException("Unknown language or instrument id " + id + ", known ids: " + String.join(", ", LanguageAccessor.ENGINE.getKnownLoggerIds()));
1049
+
if (!LanguageAccessor.ENGINE.isKnownLoggerId(loggerCache, id)) {
1050
+
thrownewIllegalArgumentException("Unknown language or instrument id " + id + ", known ids: " + String.join(", ", LanguageAccessor.ENGINE.getKnownLoggerIds(loggerCache)));
1051
1051
}
1052
1052
finalStringglobalLoggerId = loggerName == null || loggerName.isEmpty() ? id : id + '.' + loggerName;
0 commit comments