Merge pull request #376 from litvinovg/avoid_write_models_into_log

Avoid writing the whole model into debug log
This commit is contained in:
Dragan Ivanovic 2023-03-03 18:04:52 +01:00 committed by GitHub
commit 4e452573f2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
}