We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8361d0 commit 4fcc8c5Copy full SHA for 4fcc8c5
src/main/java/com/toopher/ToopherAPIDemo.java
@@ -23,7 +23,9 @@ public static void main(String[] args) {
23
if(env.containsKey("TOOPHER_BASE_URL")){
24
try {
25
base_uri = new URI(env.get("TOOPHER_BASE_URL"));
26
+ System.out.println("\n--------------------------------------");
27
System.out.println("Using Toopher API at: " + env.get("TOOPHER_BASE_URL"));
28
+ System.out.println("--------------------------------------\n");
29
} catch (URISyntaxException e) {
30
System.out.println("Error parsing environment arg TOOPHER_BASE_URL! Using default (https://api.toopher.com/v1/)");
31
base_uri = null;
0 commit comments