X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fnet%2Fhttp.c;fp=bertos%2Fnet%2Fhttp.c;h=0283a210399860b01f09810c1c45ad59299ec7d9;hb=8840a622d9b47293b222b5cf563ba9b59fca872b;hp=fbb43c658311edbcb7a17f493d7d3e911d0a6004;hpb=397b786cf067438239bb1cdbf90d91e3fe2062ee;p=bertos.git diff --git a/bertos/net/http.c b/bertos/net/http.c index fbb43c65..0283a210 100644 --- a/bertos/net/http.c +++ b/bertos/net/http.c @@ -304,7 +304,7 @@ static http_handler_t cgi_search(const char *name, HttpCGI *table) if (!strcmp(table[i].name, ext)) { - LOG_INFO("Match all ext %s\n", ext); + LOG_INFO("Match all ext: %s\n", ext); break; } } @@ -313,7 +313,7 @@ static http_handler_t cgi_search(const char *name, HttpCGI *table) if (strstr(name, table[i].name) != NULL) { - LOG_INFO("Match all name %s\n", name); + LOG_INFO("Match all name: %s\n", name); break; } } @@ -322,7 +322,7 @@ static http_handler_t cgi_search(const char *name, HttpCGI *table) if (!strcmp(table[i].name, name)) { - LOG_INFO("Match all word %s\n", name); + LOG_INFO("Word match: %s\n", name); break; } } @@ -361,7 +361,7 @@ void http_poll(struct netconn *server) memset(req_string, 0, sizeof(req_string)); http_getPageName(rx_buf, len, req_string, sizeof(req_string)); - LOG_INFO("Search %s\n", req_string); + LOG_INFO("Search: %s\n", req_string); if (req_string[0] == '\0') strcpy(req_string, HTTP_DEFAULT_PAGE);