Skip to content

Commit 1371a28

Browse files
committed
Fix syntax error
1 parent fd9e236 commit 1371a28

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/src/main/java/io/snyk/plugins/artifactory/scanner/ScannerModule.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,8 +158,8 @@ private boolean shouldSkipLastModifiedForRepository(RepoPath repoPath) {
158158
List<String> allowlist = LastModifiedRepositoryPolicy.parseAllowlist(allowlistRaw);
159159
String repoKey = repoPath.getRepoKey();
160160

161-
log.debug("allowlist for last-modified check: {} for repoPath {}", allowlist, repoPath);
162-
log.debug("repoKey for last-modified check: {} for repoPath {}", repoKey, repoPath);
161+
LOG.debug("allowlist for last-modified check: {} for repoPath {}", allowlist, repoPath);
162+
LOG.debug("repoKey for last-modified check: {} for repoPath {}", repoKey, repoPath);
163163

164164
if (!allowlist.isEmpty()) {
165165
if (lastModifiedDateRemoteOnly() && LOGGED_REMOTE_ONLY_IGNORED_WITH_ALLOWLIST.compareAndSet(false, true)) {

0 commit comments

Comments
 (0)