diff --git a/build_helpers/schema.json b/build_helpers/schema.json index 3c37896b1..6951d2cde 100644 --- a/build_helpers/schema.json +++ b/build_helpers/schema.json @@ -1213,6 +1213,11 @@ }, "uniqueItems": true }, + "log_responses": { + "description": "Log responses from the exchange.Useful/required to debug issues with order processing.", + "type": "boolean", + "default": false + }, "unknown_fee_rate": { "description": "Fee rate for unknown markets.", "type": "number" diff --git a/freqtrade/configuration/config_schema.py b/freqtrade/configuration/config_schema.py index 89e7f8b3b..9832bbbc7 100644 --- a/freqtrade/configuration/config_schema.py +++ b/freqtrade/configuration/config_schema.py @@ -861,6 +861,14 @@ CONF_SCHEMA = { "items": {"type": "string"}, "uniqueItems": True, }, + "log_responses": { + "description": ( + "Log responses from the exchange." + "Useful/required to debug issues with order processing." + ), + "type": "boolean", + "default": False, + }, "unknown_fee_rate": { "description": "Fee rate for unknown markets.", "type": "number",