You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by da...@apache.org on 2008/08/27 22:45:47 UTC

svn commit: r689610 - /incubator/couchdb/branches/json_term_changes/src/couchdb/couch_httpd.erl

Author: damien
Date: Wed Aug 27 13:45:47 2008
New Revision: 689610

URL: http://svn.apache.org/viewvc?rev=689610&view=rev
Log:
Remove debugging statement.

Modified:
    incubator/couchdb/branches/json_term_changes/src/couchdb/couch_httpd.erl

Modified: incubator/couchdb/branches/json_term_changes/src/couchdb/couch_httpd.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/json_term_changes/src/couchdb/couch_httpd.erl?rev=689610&r1=689609&r2=689610&view=diff
==============================================================================
--- incubator/couchdb/branches/json_term_changes/src/couchdb/couch_httpd.erl (original)
+++ incubator/couchdb/branches/json_term_changes/src/couchdb/couch_httpd.erl Wed Aug 27 13:45:47 2008
@@ -301,7 +301,6 @@
     throw({method_not_allowed, "POST"});
 
 handle_db_request(Req, 'POST', {_DbName, Db, [<<"_compact">>]}) ->
-    io:format("Start Compact~n"),
     ok = couch_db:start_compact(Db),
     send_json(Req, 202, {[
         {ok, true}