This is an automated email from the ASF dual-hosted git repository.
jan pushed a commit to branch rebase/access-2023
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/rebase/access-2023 by this
push:
new 0c544e8ef chore: remove debug comments
0c544e8ef is described below
commit 0c544e8efe07774437d366a06b6e44f3832d40c0
Author: Jan Lehnardt <[email protected]>
AuthorDate: Sat Jul 8 15:38:52 2023 +0200
chore: remove debug comments
---
src/couch/src/couch_changes.erl | 3 ---
1 file changed, 3 deletions(-)
diff --git a/src/couch/src/couch_changes.erl b/src/couch/src/couch_changes.erl
index c6aca82e7..e072a2e1c 100644
--- a/src/couch/src/couch_changes.erl
+++ b/src/couch/src/couch_changes.erl
@@ -688,13 +688,10 @@ maybe_get_changes_doc(_Value, _Acc) ->
[].
load_doc(Db, Value, Opts, DocOpts, Filter) ->
- %couch_log:error("~ncouch_changes:load_doc(): Value: ~p~n", [Value]),
case couch_index_util:load_doc(Db, Value, Opts) of
null ->
- %couch_log:error("~ncouch_changes:load_doc(): null~n", []),
[{doc, null}];
Doc ->
- %couch_log:error("~ncouch_changes:load_doc(): Doc: ~p~n", [Doc]),
[{doc, doc_to_json(Doc, DocOpts, Filter)}]
end.