Skip to content

Commit

Permalink
MB-48793: Fix json key format
Browse files Browse the repository at this point in the history
Change-Id: I1f4735aeb0a4b02172c080d8c5d6210dc06b96ef
Reviewed-on: http://review.couchbase.org/c/couchdb/+/163252
Tested-by: <ankit.prabhu@couchbase.com>
Reviewed-by: <abhishek.jindal@couchbase.com>
  • Loading branch information
AnkitPrabhu committed Oct 8, 2021
1 parent 745b99f commit 27eb85d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/couchdb/couch_system_event.erl
Expand Up @@ -193,8 +193,8 @@ event(settings_changed) ->
settings_changed(Section, Key, OldValue, NewValue) ->
system_log(settings_changed, [couch_util:to_json_key_value(section, Section),
couch_util:to_json_key_value(key, Key),
couch_util:to_json_key_value(oldValue, OldValue),
couch_util:to_json_key_value(newValue, NewValue)]).
couch_util:to_json_key_value(old_value, OldValue),
couch_util:to_json_key_value(new_value, NewValue)]).

ddoc_created(Bucket, DDocId, NumViews) ->
system_log(ddoc_created, [couch_util:to_json_key_value(bucket, Bucket),
Expand Down

0 comments on commit 27eb85d

Please sign in to comment.