File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Userland/Libraries/LibHTTP Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -45,10 +45,10 @@ void HttpsJob::start(NonnullRefPtr<Core::Socket> socket)
45
45
};
46
46
m_socket->set_idle (false );
47
47
if (m_socket->is_established ()) {
48
- dbgln ( " Reusing previous connection for {}" , url ());
48
+ dbgln_if (HTTPSJOB_DEBUG, " Reusing previous connection for {}" , url ());
49
49
deferred_invoke ([this ] { on_socket_connected (); });
50
50
} else {
51
- dbgln ( " Creating a new connection for {}" , url ());
51
+ dbgln_if (HTTPSJOB_DEBUG, " Creating a new connection for {}" , url ());
52
52
m_socket->set_root_certificates (m_override_ca_certificates ? *m_override_ca_certificates : DefaultRootCACertificates::the ().certificates ());
53
53
m_socket->on_tls_connected = [this ] {
54
54
dbgln_if (HTTPSJOB_DEBUG, " HttpsJob: on_connected callback" );
You can’t perform that action at this time.
0 commit comments