Skip to content

Commit

Permalink
iso639 these are not errors but debug because processed elsewhere
Browse files Browse the repository at this point in the history
  • Loading branch information
courville committed Jun 16, 2024
1 parent 09e9e7d commit 9f664d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/com/archos/mediacenter/utils/ISO639codes.java
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ static public String getLanguageNameForLetterCode(String code) {
} else if (code.length() == 3) {
return getLanguageNameFor3LetterCode(code);
} else {
log.error("getLanguageNameForLetterCode: Invalid code {}", code);
log.debug("getLanguageNameForLetterCode: Invalid code {}", code);
return code;
}
}
Expand All @@ -161,7 +161,7 @@ static public String getLanguageNameFor3LetterCode(String code) {
} else {
// there is something missing make it obvious and fallback to original 3 letter code
languageName = code;
log.error("getLanguageNameFor3LetterCode: No language name found for code {}", code);
log.debug("getLanguageNameFor3LetterCode: No language name found for code {}", code);
}
}
return languageName;
Expand Down

0 comments on commit 9f664d5

Please sign in to comment.