We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d39fcc commit fd9e236Copy full SHA for fd9e236
1 file changed
core/src/main/java/io/snyk/plugins/artifactory/scanner/ScannerModule.java
@@ -158,6 +158,9 @@ private boolean shouldSkipLastModifiedForRepository(RepoPath repoPath) {
158
List<String> allowlist = LastModifiedRepositoryPolicy.parseAllowlist(allowlistRaw);
159
String repoKey = repoPath.getRepoKey();
160
161
+ log.debug("allowlist for last-modified check: {} for repoPath {}", allowlist, repoPath);
162
+ log.debug("repoKey for last-modified check: {} for repoPath {}", repoKey, repoPath);
163
+
164
if (!allowlist.isEmpty()) {
165
if (lastModifiedDateRemoteOnly() && LOGGED_REMOTE_ONLY_IGNORED_WITH_ALLOWLIST.compareAndSet(false, true)) {
166
LOG.warn(
0 commit comments