From 995856d716cbeb035170ec80725a649ad395fea1 Mon Sep 17 00:00:00 2001 From: Oliver Kopp Date: Thu, 25 Apr 2024 21:26:52 +0200 Subject: [PATCH] Add '' --- src/main/java/org/jabref/logic/bst/BstVMVisitor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/org/jabref/logic/bst/BstVMVisitor.java b/src/main/java/org/jabref/logic/bst/BstVMVisitor.java index cc90a7c30e1..d2955e3fa16 100644 --- a/src/main/java/org/jabref/logic/bst/BstVMVisitor.java +++ b/src/main/java/org/jabref/logic/bst/BstVMVisitor.java @@ -230,10 +230,10 @@ protected void resolveIdentifier(String name, ParserRuleContext ctx) { public Integer visitBstFunction(BstParser.BstFunctionContext ctx) { String name = ctx.getChild(0).getText(); if (bstVMContext.functions().containsKey(name)) { - LOGGER.trace("Function {} found", name); + LOGGER.trace("Function '{}' found", name); bstVMContext.functions().get(name).execute(this, ctx, selectedBstEntry); } else { - LOGGER.trace("Function {} not found", name); + LOGGER.trace("Function '{}' not found", name); visit(ctx.getChild(0)); }