Skip to content

Commit

Permalink
🚸 Turn warn into debug
Browse files Browse the repository at this point in the history
  • Loading branch information
phoenixr-codes committed Oct 18, 2024
1 parent 9ec753e commit c842e74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/localization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ fn append_language_file(
.open(path)?;
log::debug!("file: {:?}", file);
if file_contains_key(&file, key) {
log::warn!("{lang} already contains key {key}");
log::debug!("{lang} already contains key {key}");
} else {
writeln!(file, "{key}={translation}\t## @generated")?;
}
Expand Down

0 comments on commit c842e74

Please sign in to comment.