diff --git a/site/app.py b/site/app.py index b25d161..31ab8cb 100644 --- a/site/app.py +++ b/site/app.py @@ -135,6 +135,7 @@ class ContractsApp: def _upload_json(self): """Принять файл как base64. Сохранить строкой (без декодирования — быстро).""" data = request.get_json(silent=True) + _log("upload_entry", f"data={'yes' if data else 'no'}") if not data: return jsonify({"error": "Нет JSON"}), 400