From c53a76f0ef3412028514189971b0b64696e66f5d Mon Sep 17 00:00:00 2001
From: Andy Green <andy@warmcat.com>
Date: Wed, 8 Mar 2017 10:52:49 +0800
Subject: [PATCH] reduce log spew on POST processing

---
 lib/server.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/server.c b/lib/server.c
index 26884d88..35eb753a 100644
--- a/lib/server.c
+++ b/lib/server.c
@@ -3033,7 +3033,7 @@ lws_spa_create(struct lws *wsi, const char * const *param_names,
 	if (!spa->param_length)
 		goto bail5;
 
-	lwsl_notice("%s: Created SPA %p\n", __func__, spa);
+	lwsl_info("%s: Created SPA %p\n", __func__, spa);
 
 	return spa;
 
@@ -3093,7 +3093,7 @@ lws_spa_destroy(struct lws_spa *spa)
 {
 	int n = 0;
 
-	lwsl_notice("%s: destroy spa %p\n", __func__, spa);
+	lwsl_info("%s: destroy spa %p\n", __func__, spa);
 
 	if (spa->s)
 		lws_urldecode_s_destroy(spa->s);
-- 
GitLab