From d6a8c5dd3aa2531c4b2d8d7b51ed3b992f551d0d Mon Sep 17 00:00:00 2001 From: Paul Cochrane Date: Tue, 26 Sep 2017 17:56:03 +0200 Subject: [PATCH] Make server start message clearer The phrase "Please contact me" sounds like one should send an email (or similar) to someone, whereas what is meant is that the server has started at the given address. This change should improve the clarity of the message. --- lib/Pod/POM/Web.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Pod/POM/Web.pm b/lib/Pod/POM/Web.pm index 1ad0290..d05396e 100644 --- a/lib/Pod/POM/Web.pm +++ b/lib/Pod/POM/Web.pm @@ -100,7 +100,7 @@ sub server { # builtin HTTP server; unused if running under Apache my $daemon = HTTP::Daemon->new(LocalPort => $port, ReuseAddr => 1) # patch by CDOLAN or die "could not start daemon on port $port"; - print STDERR "Please contact me at: url, ">\n"; + print STDERR "Server started at: url, ">\n"; # main server loop while (my $client_connection = $daemon->accept) {