Skip to content

Commit

Permalink
#23 more logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Yegor Bugayenko committed Nov 20, 2016
1 parent 26f6bf0 commit e0ff7cb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/java/io/jare/tk/TkRelay.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,11 @@ public Response act(final Request req) throws IOException {
if (!domains.hasNext()) {
throw new HttpException(
HttpURLConnection.HTTP_BAD_REQUEST,
String.format("domain \"%s\" is not registered", host)
String.format(
// @checkstyle LineLength (1 line)
"domain \"%s\" is not registered, check your account at www.jare.io",
host
)
);
}
final Domain domain = domains.next();
Expand Down

0 comments on commit e0ff7cb

Please sign in to comment.