diff --git a/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/Java11HttpTransportFactory.java b/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/Java11HttpTransportFactory.java index 1d6ca5a0f7..13acbda7ab 100644 --- a/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/Java11HttpTransportFactory.java +++ b/p2-maven-plugin/src/main/java/org/eclipse/tycho/p2maven/transport/Java11HttpTransportFactory.java @@ -112,7 +112,8 @@ public T get(ResponseConsumer consumer) throws IOException { return performGet(consumer, client); } catch (IOException e) { if (isGoaway(e)) { - logger.info("Received GOAWAY from server " + uri.getHost() + " will retry with Http/1..."); + logger.info("Received GOAWAY from server " + uri.getHost() + " will retry download of " + uri + + " with Http/1..."); TimeUnit.SECONDS.sleep(1); return performGet(consumer, clientHttp1); }