mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 00:32:45 +00:00 
			
		
		
		
	Browser+LibWeb: Silence some debug spams
This commit is contained in:
		
							parent
							
								
									e80b887059
								
							
						
					
					
						commit
						652fa54495
					
				
					 3 changed files with 9 additions and 9 deletions
				
			
		|  | @ -171,7 +171,7 @@ bool FrameLoader::load(const LoadRequest& request, Type type) | |||
|         ResourceLoader::the().load( | ||||
|             favicon_url, | ||||
|             [this, favicon_url](auto data, auto&, auto) { | ||||
|                 dbgln("Favicon downloaded, {} bytes from {}", data.size(), favicon_url); | ||||
|                 dbgln_if(SPAM_DEBUG, "Favicon downloaded, {} bytes from {}", data.size(), favicon_url); | ||||
|                 RefPtr<Gfx::Bitmap> favicon_bitmap; | ||||
|                 auto decoder = Gfx::ImageDecoder::try_create(data); | ||||
|                 if (!decoder) { | ||||
|  | @ -181,7 +181,7 @@ bool FrameLoader::load(const LoadRequest& request, Type type) | |||
|                     if (!favicon_bitmap) | ||||
|                         dbgln("Could not decode favicon {}", favicon_url); | ||||
|                     else | ||||
|                         dbgln("Decoded favicon, {}", favicon_bitmap->size()); | ||||
|                         dbgln_if(IMAGE_DECODER_DEBUG, "Decoded favicon, {}", favicon_bitmap->size()); | ||||
|                 } | ||||
|                 load_favicon(favicon_bitmap); | ||||
|             }, | ||||
|  | @ -197,7 +197,7 @@ bool FrameLoader::load(const LoadRequest& request, Type type) | |||
| 
 | ||||
| bool FrameLoader::load(const URL& url, Type type) | ||||
| { | ||||
|     dbgln("FrameLoader::load: {}", url); | ||||
|     dbgln_if(SPAM_DEBUG, "FrameLoader::load: {}", url); | ||||
| 
 | ||||
|     if (!url.is_valid()) { | ||||
|         load_error_page(url, "Invalid URL"); | ||||
|  | @ -275,9 +275,9 @@ void FrameLoader::resource_did_load() | |||
|     } | ||||
| 
 | ||||
|     if (resource()->has_encoding()) { | ||||
|         dbgln("This content has MIME type '{}', encoding '{}'", resource()->mime_type(), resource()->encoding().value()); | ||||
|         dbgln_if(RESOURCE_DEBUG, "This content has MIME type '{}', encoding '{}'", resource()->mime_type(), resource()->encoding().value()); | ||||
|     } else { | ||||
|         dbgln("This content has MIME type '{}', encoding unknown", resource()->mime_type()); | ||||
|         dbgln_if(RESOURCE_DEBUG, "This content has MIME type '{}', encoding unknown", resource()->mime_type()); | ||||
|     } | ||||
| 
 | ||||
|     auto document = DOM::Document::create(); | ||||
|  |  | |||
|  | @ -105,7 +105,7 @@ void ResourceLoader::load(const LoadRequest& request, Function<void(ReadonlyByte | |||
|     } | ||||
| 
 | ||||
|     if (url.protocol() == "about") { | ||||
|         dbgln("Loading about: URL {}", url); | ||||
|         dbgln_if(SPAM_DEBUG, "Loading about: URL {}", url); | ||||
|         deferred_invoke([success_callback = move(success_callback)](auto&) { | ||||
|             success_callback(String::empty().to_byte_buffer(), {}, {}); | ||||
|         }); | ||||
|  | @ -113,7 +113,7 @@ void ResourceLoader::load(const LoadRequest& request, Function<void(ReadonlyByte | |||
|     } | ||||
| 
 | ||||
|     if (url.protocol() == "data") { | ||||
|         dbgln("ResourceLoader loading a data URL with mime-type: '{}', base64={}, payload='{}'", | ||||
|         dbgln_if(SPAM_DEBUG, "ResourceLoader loading a data URL with mime-type: '{}', base64={}, payload='{}'", | ||||
|             url.data_mime_type(), | ||||
|             url.data_payload_is_base64(), | ||||
|             url.data_payload()); | ||||
|  | @ -213,7 +213,7 @@ bool ResourceLoader::is_port_blocked(int port) | |||
| 
 | ||||
| void ResourceLoader::clear_cache() | ||||
| { | ||||
|     dbgln("Clearing {} items from ResourceLoader cache", s_resource_cache.size()); | ||||
|     dbgln_if(CACHE_DEBUG, "Clearing {} items from ResourceLoader cache", s_resource_cache.size()); | ||||
|     s_resource_cache.clear(); | ||||
| } | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 TheFightingCatfish
						TheFightingCatfish