Skip to content

Commit

Permalink
Merge pull request #1759 from akto-api-security/temp/db_call_logs
Browse files Browse the repository at this point in the history
use loggermaker
  • Loading branch information
avneesh-akto authored Nov 22, 2024
2 parents 13dfa1c + 6db2a6f commit ac2cd96
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public String checkIfDependencyGraphAvailable() {
), Projections.include("_id")
);
long end = System.currentTimeMillis();
System.out.println("checkIfDependencyGraphAvailable db call took: " + (end - start) + " ms");
loggerMaker.infoAndAddToDb("checkIfDependencyGraphAvailable db call took: " + (end - start) + " ms");

dependencyGraphExists = node != null;
return SUCCESS.toUpperCase();
Expand Down

0 comments on commit ac2cd96

Please sign in to comment.