Skip to content

Commit

Permalink
Update src/org/omegat/core/segmentation/MapRule.java
Browse files Browse the repository at this point in the history
Use non localized message for debug level
  • Loading branch information
miurahr authored Nov 2, 2024
1 parent a69a418 commit b0c3e17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/omegat/core/segmentation/MapRule.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ public void setLanguage(String code) {
if (code != null && code.contains("Textdateien")) {
languageCode = LanguageCodes.F_TEXT_CODE;
} else {
LOGGER.atDebug().setMessageRB("CORE_SRX_RULES_UNKNOWN_LANGUAGE_CODE").addArgument(code)
LOGGER.atDebug().setMessage("Unknown language code '{}' specified").addArgument(code)
.log();
languageCode = code;
}
Expand Down

0 comments on commit b0c3e17

Please sign in to comment.