diff options
-rw-r--r-- | ennu.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ennu.el b/ennu.el index 5cd1d1a..8481ebd 100644 --- a/ennu.el +++ b/ennu.el @@ -495,7 +495,8 @@ as keys. Keys are compared using `equal'." ((= (httpd-status file-path) 200) (httpd-serve-root proc httpd-root uri-path request)) (t (httpd-serve-root proc httpd-root (concat uri-path ".html") request))))) - (httpd-start)) + (httpd-start) + (message "Ennu web server listening at http://localhost:%d" httpd-port)) (defun ennu-server-stop () (interactive) |