diff options
author | Noah Slater <nslater@apache.org> | 2008-06-10 16:19:18 +0000 |
---|---|---|
committer | Noah Slater <nslater@apache.org> | 2008-06-10 16:19:18 +0000 |
commit | 326dc4969a896d86a694abb1d3ba5a4f7fdcc155 (patch) | |
tree | a39af3df852b7e7bb7663d9679f21fcf010a04f3 /src | |
parent | 38959cfe88fe6825400f2a2e86e075cbc2471ffd (diff) |
slight change to startup message
git-svn-id: https://svn.apache.org/repos/asf/incubator/couchdb/trunk@666182 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src')
-rw-r--r-- | src/couchdb/couch_server_sup.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/couchdb/couch_server_sup.erl b/src/couchdb/couch_server_sup.erl index ee555c3c..7a628eb9 100644 --- a/src/couchdb/couch_server_sup.erl +++ b/src/couchdb/couch_server_sup.erl @@ -77,7 +77,7 @@ start_server(InputIniFilename) -> RemoteRestart = list_to_atom(proplists:get_value({"Couch", "AllowRemoteRestart"}, Ini, "undefined")), ServerOptions = [{remote_restart, RemoteRestart}], QueryServers = [{Lang, QueryExe} || {{"Couch Query Servers", Lang}, QueryExe} <- Ini], - + ChildProcesses = [{couch_log, {couch_log, start_link, [LogFile, LogLevel]}, @@ -137,11 +137,11 @@ start_server(InputIniFilename) -> [couch_ft_query]}] end, - io:format("couch ~s (LogLevel=~s)~n", [couch_server:get_version(), LogLevel]), + io:format("Apache CouchDB ~s (LogLevel=~s)~n", [couch_server:get_version(), LogLevel]), io:format("~s~n~n", [ConsoleStartupMsg]), - + couch_util:start_driver(UtilDriverDir), - + % ensure these applications are running application:start(inets), application:start(crypto), |