Skip to content

Commit

Permalink
Add locale to log output
Browse files Browse the repository at this point in the history
  • Loading branch information
maallen committed Aug 11, 2023
1 parent 8f14eb2 commit 6378b8b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,12 @@ && isFileEqualToPreviousRun(
locale.getLocale(),
fileName,
fileContent)) {
logger.info("Checksum match for " + fileName + ", skipping text unit import.");
logger.info(
"Checksum match for "
+ fileName
+ " in locale "
+ localeTag
+ ", skipping text unit import.");
return;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ && isFileEqualToPreviousRun(
logger.info(
"Checksum match for "
+ file.getFileUri()
+ " in locale "
+ repositoryLocale.getLocale().getBcp47Tag()
+ ", skipping text unit import.");
return;
}
Expand Down

0 comments on commit 6378b8b

Please sign in to comment.