Skip to content

Commit e0f3f21

Browse files
Added more logging
1 parent 900fef9 commit e0f3f21

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/main/java/io/micrometer/release/Main.java

+6-4
Original file line numberDiff line numberDiff line change
@@ -60,23 +60,24 @@ void run() {
6060
String docsGenVersions = getDocsGenVersions();
6161

6262
log.info("""
63-
!!!
64-
6563
@@@ MICROMETER RELEASE @@@
6664
6765
Processing following env variables:
6866
6967
GITHUB_REPOSITORY [%s]
7068
GITHUB_REF_NAME [%s]
69+
70+
POST RELEASE TASKS:
71+
------------------
7172
PREVIOUS_REF_NAME [%s]
7273
74+
7375
TRAIN OPTIONS:
76+
------------------
7477
CONTEXT_PROPAGATION_VERSIONS [%s]
7578
MICROMETER_VERSIONS [%s]
7679
TRACING_VERSIONS [%s]
7780
DOCS_GEN_VERSIONS [%s]
78-
79-
!!!
8081
""".formatted(githubOrgRepo, githubRefName, previousRefName, contextPropVersions, micrometerVersions,
8182
tracingVersions, docsGenVersions));
8283

@@ -113,6 +114,7 @@ private String modifyForE2eTests(String githubOrgRepo) {
113114
}
114115

115116
private boolean hasText(String text) {
117+
log.info("Checking if text is there [{}]", text);
116118
return text != null && !text.isBlank();
117119
}
118120

0 commit comments

Comments
 (0)