Format ID as a string and not as an erlang binary
Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/bd6f9328 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/bd6f9328 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/bd6f9328 Branch: refs/heads/1.2.x Commit: bd6f93280bf391434eb1db545768f224e8c1875c Parents: ff37b61 Author: Filipe David Borba Manana <[email protected]> Authored: Mon Dec 19 14:23:28 2011 +0000 Committer: Filipe David Borba Manana <[email protected]> Committed: Mon Dec 19 14:43:17 2011 +0000 ---------------------------------------------------------------------- src/couchdb/couch_replicator_worker.erl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/bd6f9328/src/couchdb/couch_replicator_worker.erl ---------------------------------------------------------------------- diff --git a/src/couchdb/couch_replicator_worker.erl b/src/couchdb/couch_replicator_worker.erl index aa04dc5..8f27c1b 100644 --- a/src/couchdb/couch_replicator_worker.erl +++ b/src/couchdb/couch_replicator_worker.erl @@ -299,7 +299,7 @@ fetch_doc(Source, {Id, Revs, PAs}, DocHandler, Acc) -> Source, Id, Revs, [{atts_since, PAs}], DocHandler, Acc) catch throw:{missing_stub, _} -> - ?LOG_ERROR("Retrying fetch and update of document `~p` due to out of " + ?LOG_ERROR("Retrying fetch and update of document `~s` due to out of " "sync attachment stubs. Missing revisions are: ~s", [Id, couch_doc:revs_to_strs(Revs)]), couch_api_wrap:open_doc_revs(Source, Id, Revs, [], DocHandler, Acc)
