Skip to content

Commit

Permalink
Improves variable naming
Browse files Browse the repository at this point in the history
Fixes: SIRI-939
  • Loading branch information
mkeckmkeck committed Mar 15, 2024
1 parent d10cc84 commit 5fbc690
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -184,8 +184,8 @@ private void updateArticle(String templatePath, String syncId) {
.forEach(crossReference -> entry.getRelatesTo().modify().add(crossReference));

elastic.update(entry);
} catch (Exception e) {
KnowledgeBase.LOG.SEVERE("Failed to load article %s, reason: %s", templatePath, e.getMessage());
} catch (Exception exception) {
KnowledgeBase.LOG.SEVERE("Failed to load article %s, reason: %s", templatePath, exception.getMessage());
}
}

Expand Down

0 comments on commit 5fbc690

Please sign in to comment.