You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ns...@apache.org on 2008/06/10 18:19:19 UTC

svn commit: r666182 - /incubator/couchdb/trunk/src/couchdb/couch_server_sup.erl

Author: nslater
Date: Tue Jun 10 09:19:18 2008
New Revision: 666182

URL: http://svn.apache.org/viewvc?rev=666182&view=rev
Log:
slight change to startup message

Modified:
    incubator/couchdb/trunk/src/couchdb/couch_server_sup.erl

Modified: incubator/couchdb/trunk/src/couchdb/couch_server_sup.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/trunk/src/couchdb/couch_server_sup.erl?rev=666182&r1=666181&r2=666182&view=diff
==============================================================================
--- incubator/couchdb/trunk/src/couchdb/couch_server_sup.erl (original)
+++ incubator/couchdb/trunk/src/couchdb/couch_server_sup.erl Tue Jun 10 09:19:18 2008
@@ -77,7 +77,7 @@
     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 @@
                 [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),