From 16320c8cae31c06582369909513b4e8243c353f6 Mon Sep 17 00:00:00 2001 From: inspurericzhang Date: Wed, 24 May 2023 01:09:09 +0000 Subject: [PATCH] change log level Change-Id: I144e9b512a259366003f924ba8e782bf03f0a9a1 --- venus/modules/custom_config/controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/venus/modules/custom_config/controller.py b/venus/modules/custom_config/controller.py index 64a7128..f8d3c51 100644 --- a/venus/modules/custom_config/controller.py +++ b/venus/modules/custom_config/controller.py @@ -33,10 +33,10 @@ class CustomConfigController(wsgi.Controller): @wsgi.wrap_check_policy def set_config(self, req, body): - LOG.info(req) + LOG.debug(req) if len(req.body) == 0: return {"code": -1, "msg": "invalid param"} - LOG.info(body) + LOG.debug(body) id = body.get("id", None) value = body.get("value", None) if id is None or value is None: