Skip to content

Commit 1aa9d55

Browse files
committed
chore: logging
1 parent c5e5043 commit 1aa9d55

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/spp/demo/Main.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ public static void triggerEndpoints() {
8282
private static void callEndpoint(String endpoint) {
8383
executor.execute(() -> {
8484
try {
85+
System.out.println("Calling endpoint: " + endpoint);
8586
new URL("http://localhost:8080" + endpoint).openStream().close();
87+
System.out.println("Called endpoint: " + endpoint);
8688
} catch (Exception ignore) {
8789
}
8890
});

0 commit comments

Comments
 (0)