Skip to content

Commit 678785f

Browse files
committed
Changing log level to warn
1 parent 3a525c1 commit 678785f

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)