Avoid writing the whole model into debug log

This commit is contained in:
Georgy Litvinov 2023-03-03 17:27:42 +01:00
parent 0c8b02a630
commit 67c0421bea

View file

@ -188,7 +188,7 @@ public class ContextModelAccessImpl implements ContextModelAccess {
@Override
public OntModel getOntModel(String name) {
OntModel ontModel = ontModelCache.getOntModel(name);
log.debug("getOntModel: " + ontModel);
log.debug("getOntModel: " + name);
return ontModel;
}