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:59:56 UTC

svn commit: r689616 - /incubator/couchdb/branches/json_term_changes/src/couchdb/couch_db_updater.erl

Author: damien
Date: Wed Aug 27 13:59:55 2008
New Revision: 689616

URL: http://svn.apache.org/viewvc?rev=689616&view=rev
Log:
Fix logging statement

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

Modified: incubator/couchdb/branches/json_term_changes/src/couchdb/couch_db_updater.erl
URL: http://svn.apache.org/viewvc/incubator/couchdb/branches/json_term_changes/src/couchdb/couch_db_updater.erl?rev=689616&r1=689615&r2=689616&view=diff
==============================================================================
--- incubator/couchdb/branches/json_term_changes/src/couchdb/couch_db_updater.erl (original)
+++ incubator/couchdb/branches/json_term_changes/src/couchdb/couch_db_updater.erl Wed Aug 27 13:59:55 2008
@@ -96,7 +96,7 @@
         file:delete(Filepath ++ ".old"),
             
         ok = gen_server:call(Db#db.main_pid, {db_updated, NewDb2}),
-        ?LOG_INFO("Compaction for db ~p completed.", [Db#db.name]),
+        ?LOG_INFO("Compaction for db \"~s\" completed.", [Db#db.name]),
         {noreply, NewDb2#db{compactor_pid=nil}};
     false ->
         ?LOG_INFO("Compaction file still behind main file "