Skip to content

Commit e890000

Browse files
Added more logging
1 parent b5526d1 commit e890000

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/main/java/io/micrometer/release/train/VersionToBranchConverter.java

+2
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,8 @@ private boolean doesBranchExist(String branch) throws IOException, InterruptedEx
8181
.header("Accept", "application/vnd.github.v3+json")
8282
.build();
8383
HttpResponse<String> response = httpClient.send(request, HttpResponse.BodyHandlers.ofString());
84+
log.info("Got the following response status code: {}", response.statusCode());
85+
log.info("Got the following response: {}", response.body());
8486
return response.statusCode() == 200;
8587
}
8688

src/test/java/io/micrometer/release/train/TrainGithubActionsE2eTests.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ void should_verify_current_milestone(String version) throws JsonProcessingExcept
6262
@ParameterizedTest
6363
@CsvSource(textBlock = """
6464
0.1.2,0.1.1
65-
0.2.0-RC1,0.2.0-M2
65+
0.2.0-M3,0.2.0-M2
6666
1.0.0,1.0.0-RC1
6767
""")
6868
void should_verify_next_milestone(String next, String previous) throws JsonProcessingException {

0 commit comments

Comments
 (0)