You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ch...@apache.org on 2023/03/11 00:02:10 UTC

[couchdb] branch add-report-logging updated: Remove unnecessary comment

This is an automated email from the ASF dual-hosted git repository.

chewbranca pushed a commit to branch add-report-logging
in repository https://gitbox.apache.org/repos/asf/couchdb.git


The following commit(s) were added to refs/heads/add-report-logging by this push:
     new 40dcb323c Remove unnecessary comment
40dcb323c is described below

commit 40dcb323cec6c2e446dc9ce2826f205f57302996
Author: Russell Branca <ch...@apache.org>
AuthorDate: Fri Mar 10 16:02:02 2023 -0800

    Remove unnecessary comment
---
 src/couch_log/src/couch_log.erl | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/couch_log/src/couch_log.erl b/src/couch_log/src/couch_log.erl
index bd954e58d..379326b52 100644
--- a/src/couch_log/src/couch_log.erl
+++ b/src/couch_log/src/couch_log.erl
@@ -64,7 +64,6 @@ report(ReportId, Fmt, Args, Meta0) when is_map(Meta0) ->
     end,
     couch_stats:increment_counter([couch_log, level, report]),
     Entry = couch_log_formatter:format(report, self(), ReportId, Fmt, Args, Meta),
-    %%ok = couch_log_server:report(Entry).
     ok = couch_log_server:log(Entry).
 
 -spec set_level(atom() | string() | integer()) -> true.