Can I supress the HTTP connection messages to serial?

During an HTTP request I get the following messages in Serial:

[V][HTTPClient.cpp:140] beginInternal(): url: http://something.php
[D][HTTPClient.cpp:181] beginInternal(): host: something.com port: 80 url: /a_page.php
[D][HTTPClient.cpp:850] connect(): connected to something.com:80
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'HTTP/1.1 200 OK'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'Server: nginx/1.14.0'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'Date: Thu, 18 Oct 2018 06:04:59 GMT'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'Content-Type: text/html; charset=UTF-8'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'Transfer-Encoding: chunked'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'Connection: close'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'X-Powered-By: PHP/7.2.5'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: 'Vary: Accept-Encoding'
[V][HTTPClient.cpp:938] handleHeaderResponse(): RX: ''
[D][HTTPClient.cpp:968] handleHeaderResponse(): code: 200
[D][HTTPClient.cpp:975] handleHeaderResponse(): Transfer-Encoding: chunked
[D][HTTPClient.cpp:631] writeToStream(): read chunk len: 10
[D][HTTPClient.cpp:1101] writeToStreamDataBlock(): connection closed or file end (written: 10).
[D][HTTPClient.cpp:631] writeToStream(): read chunk len: 0
[D][HTTPClient.cpp:234] end(): still data in buffer (2), clean up.
[E][WiFiClient.cpp:427] flush(): 11
[D][HTTPClient.cpp:240] end(): tcp stop
[V][HTTPClient.cpp:244] end(): tcp is closed

Can I switch these messages off?

You have not posted the program that is generating those messages so I can only guess that you need to put a comment marker // at the start of each line that you don't want printed.

...R

Robin2:
You have not posted the program that is generating those messages

Those messages come from the ESP32 core.

Change Core Debug Level in the Tools menu.

From core, or form the HTTPClient.h library?

Is there a function within that library to turn the messages off?

Which part of Change Core Debug Level in the Tools menu was not clear enough?
It is not necessary to change the source.

Screen Shot 2018-10-19 at 11.22.37.png