Skip to content

Commit

Permalink
Added: Email context number of variables
Browse files Browse the repository at this point in the history
  • Loading branch information
djuarezgf committed Dec 2, 2024
1 parent 44d722e commit 7cc52b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/samply/email/EmailContext.java
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class EmailContext {
// If a key is Base64-encoded, it should start with the prefix "B64" to indicate its encoding.
@PostConstruct
public void init() {
log.info("Email Context initialized:");
log.info("Email Context initialized: ({})", context.entrySet().size());
Map<String, String> tempContext = new HashMap<>(context);
context.entrySet().stream().forEach(keyValue -> {
String key = replaceHyphen(keyValue.getKey());
Expand Down

0 comments on commit 7cc52b4

Please sign in to comment.