log exception instead of printing out the stack trace

This commit is contained in:
Martin Lippert
2024-11-08 13:45:03 +01:00
parent 8dc883ceac
commit b51523c2ba

View File

@@ -194,7 +194,7 @@ public class ValuePropertyReferencesProvider implements ReferenceProvider {
}
catch (Exception e) {
e.printStackTrace();
log.error("", e);
}
return foundLocations;