diff options
| -rw-r--r-- | src/couchdb/couch_server_sup.erl | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/couchdb/couch_server_sup.erl b/src/couchdb/couch_server_sup.erl index b2f03c8a..1a31c7cc 100644 --- a/src/couchdb/couch_server_sup.erl +++ b/src/couchdb/couch_server_sup.erl @@ -123,8 +123,10 @@ start_server(IniFiles) ->      unlink(ConfigPid), +    Ip = couch_config:get("httpd", "bind_address"), +    Port = mochiweb_socket_server:get(couch_httpd, port),      io:format("Apache CouchDB has started. Time to relax.~n"), -    ?LOG_INFO("Apache CouchDB has started.", []), +    ?LOG_INFO("Apache CouchDB has started on http://~s:~w/", [Ip, Port]),      {ok, Pid}. | 
