Merge "[Feature][ZXW-168][uci]delete uci log"
diff --git a/cap/zx297520v3/src/lynq/lib/liblynq-uci/src/lynq_uci.c b/cap/zx297520v3/src/lynq/lib/liblynq-uci/src/lynq_uci.c
index b557c08..a50eed1 100755
--- a/cap/zx297520v3/src/lynq/lib/liblynq-uci/src/lynq_uci.c
+++ b/cap/zx297520v3/src/lynq/lib/liblynq-uci/src/lynq_uci.c
@@ -5,7 +5,6 @@
#define UCI_SUPPORT 1
int lynq_del(char *option)
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
int ret;
char buf[LYNQ_UCI_MAX_LEN];
@@ -30,7 +29,6 @@
#if UCI_SUPPORT
static int uci_get_value(struct uci_option *o, char *out_buf)
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
struct uci_element *e;
const char *delimiter = " ";
@@ -61,7 +59,6 @@
#endif //#if UCI_SUPPORT
int lynq_uci_get(const char *arg, char *out_buf)
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
struct uci_context *ctx;
struct uci_element *e;
@@ -115,7 +112,6 @@
int lynq_uci_set(const char *arg)
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
struct uci_context *ctx;
struct uci_element *e;
@@ -173,7 +169,6 @@
int lynq_add_section(char *section_type, char *section)//rita add @2021.7.30 for adding section
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
char buf[128] = "";
sprintf(buf,"lynq_uci.%s=%s", section, section_type);
@@ -187,7 +182,6 @@
int lynq_set_value(char *section, char *key, char *value)//rita add @2021.7.30 for setting value
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
char buf[LYNQ_UCI_MAX_LEN] = "";
@@ -202,7 +196,6 @@
int lynq_get_value(char *file, char *section, char *key, char *tmp)//rita add @2021.7.30 for getting value
{
- printf("this is lynq uci module,fun:%s,line:%d\n",__FUNCTION__,__LINE__);
#if UCI_SUPPORT
char buf[LYNQ_UCI_MAX_LEN] = "";
int ret = 0;