We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c39ecc commit f8b878dCopy full SHA for f8b878d
1 file changed
core/src/main/java/io/snyk/plugins/artifactory/scanner/ScannerModule.java
@@ -117,6 +117,7 @@ private Instant getLastModifiedDate(RepoPath repoPath) {
117
ItemInfo itemInfo = repositories.getItemInfo(repoPath);
118
if (itemInfo != null) {
119
Instant lastModified = Instant.ofEpochMilli(itemInfo.getLastModified());
120
+ LOG.debug("Retrieved last modifed date of {}", lastModified.toString());
121
return lastModified;
122
} else {
123
LOG.debug("Unable to retrieve ItemInfo for {}, could not retrieve last modified date", repoPath);
0 commit comments