Skip to content

Commit

Permalink
Minor print fix (#54)
Browse files Browse the repository at this point in the history
  • Loading branch information
pradh authored Aug 27, 2021
1 parent f990af7 commit 2040186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ private boolean checkCommon(String sub, String pred, String obj, String key)
if (existingNodesOrTriples.contains(key)) return true;
if (missingNodesOrTriples.contains(key)) return false;

if (verbose) logger.info("Calling DC for - s:" + sub + ", p:" + pred);
if (verbose) logger.info("Calling DC for - " + sub + ", " + pred);
var dataJson = callDc(sub, pred);
logCtx.incrementCounterBy("Existence_NumDcCalls", 1);
if (dataJson == null) {
Expand Down

0 comments on commit 2040186

Please sign in to comment.