2
0
Эх сурвалжийг харах

Merge pull request #16433 from Calinou/remove-assetlib-debugging-prints

Remove debugging prints related to the asset library
Rémi Verschelde 7 жил өмнө
parent
commit
8cfe798877

+ 0 - 10
editor/plugins/asset_library_editor_plugin.cpp

@@ -316,7 +316,6 @@ EditorAssetLibraryItemDescription::EditorAssetLibraryItemDescription() {
 void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int p_code, const PoolStringArray &headers, const PoolByteArray &p_data) {
 
 	String error_text;
-	print_line("COMPLETED: " + itos(p_status) + " code: " + itos(p_code) + " data size: " + itos(p_data.size()));
 
 	switch (p_status) {
 
@@ -371,7 +370,6 @@ void EditorAssetLibraryItemDownload::_http_download_completed(int p_status, int
 	progress->set_max(download->get_body_size());
 	progress->set_value(download->get_downloaded_bytes());
 
-	print_line("max: " + itos(download->get_body_size()) + " bytes: " + itos(download->get_downloaded_bytes()));
 	install->set_disabled(false);
 
 	progress->set_value(download->get_downloaded_bytes());
@@ -747,8 +745,6 @@ void EditorAssetLibrary::_image_request_completed(int p_status, int p_code, cons
 
 	if (p_status == HTTPRequest::RESULT_SUCCESS) {
 
-		print_line("GOT IMAGE YAY!");
-
 		if (p_code != HTTPClient::RESPONSE_NOT_MODIFIED) {
 			for (int i = 0; i < headers.size(); i++) {
 				if (headers[i].findn("ETag:") == 0) { // Save etag
@@ -811,7 +807,6 @@ void EditorAssetLibrary::_update_image_queue() {
 				}
 			}
 
-			print_line("REQUEST ICON FOR: " + itos(E->get().asset_id));
 			Error err = E->get().request->request(E->get().image_url, headers);
 			if (err != OK) {
 				to_delete.push_back(E->key());
@@ -855,7 +850,6 @@ void EditorAssetLibrary::_request_image(ObjectID p_for, String p_image_url, Imag
 
 void EditorAssetLibrary::_repository_changed(int p_repository_id) {
 	host = repository->get_item_metadata(p_repository_id);
-	print_line(".." + host);
 	if (templates_only) {
 		_api_request("configure", REQUESTING_CONFIG, "?type=project");
 	} else {
@@ -1066,8 +1060,6 @@ void EditorAssetLibrary::_http_request_completed(int p_status, int p_code, const
 		return;
 	}
 
-	print_line("response: " + itos(p_status) + " code: " + itos(p_code));
-
 	Dictionary d;
 	{
 		Variant js;
@@ -1077,8 +1069,6 @@ void EditorAssetLibrary::_http_request_completed(int p_status, int p_code, const
 		d = js;
 	}
 
-	print_line(Variant(d).get_construct_string());
-
 	RequestType requested = requesting;
 	requesting = REQUESTING_NONE;
 

+ 0 - 5
modules/openssl/stream_peer_openssl.cpp

@@ -141,9 +141,6 @@ int StreamPeerOpenSSL::_cert_verify_callback(X509_STORE_CTX *x509_ctx, void *arg
 	X509_NAME_oneline(X509_get_subject_name(server_cert),
 			cert_str, sizeof(cert_str));
 
-	print_line("CERT STR: " + String(cert_str));
-	print_line("VALID: " + itos(base_cert_valid));
-
 	if (!base_cert_valid)
 		return 0;
 
@@ -382,7 +379,6 @@ Error StreamPeerOpenSSL::connect_to_stream(Ref<StreamPeer> p_base, bool p_valida
 	// Same as before, try to connect.
 	int result = SSL_connect(ssl);
 
-	print_line("CONNECTION RESULT: " + itos(result));
 	if (result < 1) {
 		ERR_print_errors_fp(stdout);
 		_print_error(result);
@@ -392,7 +388,6 @@ Error StreamPeerOpenSSL::connect_to_stream(Ref<StreamPeer> p_base, bool p_valida
 
 	if (peer) {
 		bool cert_ok = SSL_get_verify_result(ssl) == X509_V_OK;
-		print_line("cert_ok: " + itos(cert_ok));
 
 	} else if (validate_certs) {
 		status = STATUS_ERROR_NO_CERTIFICATE;