Skip to content

Commit 1b2fa73

Browse files
authored
Merge pull request #5 from avimanyum/W-14925234
Changing log level to warn
2 parents e6f7b19 + 678785f commit 1b2fa73

File tree

1 file changed

+2
-2
lines changed
  • dockerfile-image-update/src/main/java/com/salesforce/dockerfileimageupdate/utils

1 file changed

+2
-2
lines changed

dockerfile-image-update/src/main/java/com/salesforce/dockerfileimageupdate/utils/PullRequests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ protected boolean isRenovateEnabled(List<String> filePaths, GitHubContentToProce
6767
} catch (FileNotFoundException e) {
6868
log.debug("The file with name {} not found in the repository.Returning false. Exception: {}", filePath, e.getMessage());
6969
} catch (IOException e) {
70-
log.debug("Exception while trying to close a resource. Returning false. Exception: {}", e.getMessage());
70+
log.warn("Exception while trying to close a resource. Returning false. Exception: {}", e.getMessage());
7171
} catch (JSONException e) {
72-
log.debug("Exception while trying to read the renovate configuration file. Returning false. Exception: {}", e.getMessage());
72+
log.warn("Exception while trying to read the renovate configuration file. Returning false. Exception: {}", e.getMessage());
7373
}
7474
}
7575
return false;

0 commit comments

Comments
 (0)