Skip to content

Conversation

@ciobanu0151
Copy link

Trac ticket: https://core.trac.wordpress.org/ticket/64194#ticket


This Pull Request is for code review only. Please keep all other discussion in the Trac ticket. Do not merge this Pull Request. See GitHub Pull Requests for Code Review in the Core Handbook for more details.

@github-actions
Copy link

github-actions bot commented Nov 4, 2025

Hi @ciobanu0151! 👋

Thank you for your contribution to WordPress! 💖

It looks like this is your first pull request to wordpress-develop. Here are a few things to be aware of that may help you out!

No one monitors this repository for new pull requests. Pull requests must be attached to a Trac ticket to be considered for inclusion in WordPress Core. To attach a pull request to a Trac ticket, please include the ticket's full URL in your pull request description.

Pull requests are never merged on GitHub. The WordPress codebase continues to be managed through the SVN repository that this GitHub repository mirrors. Please feel free to open pull requests to work on any contribution you are making.

More information about how GitHub pull requests can be used to contribute to WordPress can be found in the Core Handbook.

Please include automated tests. Including tests in your pull request is one way to help your patch be considered faster. To learn about WordPress' test suites, visit the Automated Testing page in the handbook.

If you have not had a chance, please review the Contribute with Code page in the WordPress Core Handbook.

The Developer Hub also documents the various coding standards that are followed:

Thank you,
The WordPress Project

@github-actions
Copy link

github-actions bot commented Nov 4, 2025

The following accounts have interacted with this PR and/or linked issues. I will continue to update these lists as activity occurs. You can also manually ask me to refresh this list by adding the props-bot label.

Unlinked Accounts

The following contributors have not linked their GitHub and WordPress.org accounts: @ciobanu0151.

Contributors, please read how to link your accounts to ensure your work is properly credited in WordPress releases.

Core Committers: Use this line as a base for the props when committing in SVN:

Props westonruter, b1ink0.

To understand the WordPress project's expectations around crediting contributors, please review the Contributor Attribution page in the Core Handbook.

@github-actions
Copy link

github-actions bot commented Nov 4, 2025

Test using WordPress Playground

The changes in this pull request can previewed and tested using a WordPress Playground instance.

WordPress Playground is an experimental project that creates a full WordPress instance entirely within the browser.

Some things to be aware of

  • The Plugin and Theme Directories cannot be accessed within Playground.
  • All changes will be lost when closing a tab with a Playground instance.
  • All changes will be lost when refreshing the page.
  • A fresh instance is created each time the link below is clicked.
  • Every time this pull request is updated, a new ZIP file containing all changes is created. If changes are not reflected in the Playground instance,
    it's possible that the most recent build failed, or has not completed. Check the list of workflow runs to be sure.

For more details about these limitations and more, check out the Limitations page in the WordPress Playground documentation.

Test this pull request with WordPress Playground.

* @return string|null Highest fetch priority for the script and its dependents.
*/
private function get_highest_fetchpriority_with_dependents( string $handle, array $checked = array() ): ?string {
private function get_highest_fetchpriority_with_dependents( string $handle, array &$checked = array() ): ?string {
Copy link
Member

@westonruter westonruter Nov 4, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm curious why the lack of a reference caused a performance problem here specifically.

In WordPress 6.3 the same approach was used in the filter_eligible_strategies method:

private function filter_eligible_strategies( $handle, $eligible_strategies = null, $checked = array() ) {

@westonruter
Copy link
Member

As an initial starting point for investigating this, I consulted with Gemini about the problem. It replied:

Without the &, the $checked array is passed by value, meaning a copy is made on each recursive call. With a deep dependency tree, this leads to two problems:

  1. Memory and CPU Overhead: Each recursive call creates a new copy of the $checked array. This consumes memory and CPU time, especially for large dependency trees.

  2. Redundant Processing: The main issue is that the check if ( isset( $checked[ $handle ] ) ) becomes ineffective across the entire recursive process. When a script handle is added to $checked in one branch of the recursion, that information is lost when the function returns and another branch is explored. This means the same dependencies are processed over and over again.

By adding the &, the same $checked array is used across all recursive calls. This ensures that once a script is checked, it's marked as such for the entire process, avoiding redundant work and dramatically improving performance by preventing the same dependency sub-trees from being evaluated multiple times.

I also inquired about filter_eligible_strategies():

You are absolutely right to point that out. The filter_eligible_strategies() method does indeed exhibit the same logical flaw.

It is also a recursive function that uses the $checked array to keep track of script handles that have already been processed. Because the $checked array is passed by value (a copy is made for each call) and not by reference, the record of which scripts have been checked is not shared across the entire dependency tree traversal.

This means that if a script is a dependency for multiple other scripts, filter_eligible_strategies() will process it and its own dependencies multiple times, leading to the same kind of performance degradation you noted in get_highest_fetchpriority_with_dependents().

@ciobanu0151 As I mentioned on the ticket, can you share some example code that registers scripts with the relevant dependencies that triggers the performance problem you observed? I certainly don't see 10-20 second page load times.

@ciobanu0151
Copy link
Author

ciobanu0151 commented Nov 4, 2025

Hello, i noticed the issue following these steps

  1. I updated the "get_highest_fetchpriority_with_dependents" function with
private function get_highest_fetchpriority_with_dependents( string $handle, array $checked = array(), $stack =array() ): ?string {
        $stack[] = $handle;
        if($stack[0] === 'wp-hooks') {
            error_log('This is current dep stack:' . json_encode($stack));
        }

		// If there is a recursive dependency, return early.
		if ( isset( $checked[ $handle ] ) ) {
			return null;
		}

		// Mark this handle as checked to guard against infinite recursion.
		$checked[ $handle ] = true;

		// Abort if the script is not enqueued or a dependency of an enqueued script.
		if ( ! $this->query( $handle, 'enqueued' ) ) {
			return null;
		}

		$fetchpriority = $this->get_data( $handle, 'fetchpriority' );
		if ( ! $this->is_valid_fetchpriority( $fetchpriority ) ) {
			$fetchpriority = 'auto';
		}

		static $priorities   = array(
			'low',
			'auto',
			'high',
		);
		$high_priority_index = count( $priorities ) - 1;

		$highest_priority_index = (int) array_search( $fetchpriority, $priorities, true );
		if ( $highest_priority_index !== $high_priority_index ) {
			foreach ( $this->get_dependents( $handle ) as $dependent_handle ) {
				$dependent_priority = $this->get_highest_fetchpriority_with_dependents( $dependent_handle, $checked, $stack );
				if ( is_string( $dependent_priority ) ) {
					$highest_priority_index = max(
						$highest_priority_index,
						(int) array_search( $dependent_priority, $priorities, true )
					);
					if ( $highest_priority_index === $high_priority_index ) {
						break;
					}
				}
			}
		}

		return $priorities[ $highest_priority_index ];
	}

This adds a tracking of the recursive stack and logs it to see what is computed in what order.

  1. I enabled logging with:
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
  1. Then I installed the free plugin "Kubio AI Page Builder" that has the large dependence tree that caused my issue on my local machine. If you want me to create a list of depedencies manually I can also do that, but it's faster to see it if you install the plugin as it has the depedencies already configured.

  2. Then refresh any wp admin page and wait for the debug log file to populate.

This change only tracks the recursive stack for one script and the log file had over 100mb from this recursive tree.

  1. After that add the reference "&" to the checked array to notice the huge performance difference.

By adding the reference operator to the checked array, the isset( $checked[ $handle ] will work as intended as no performance problem will happen

@westonruter
Copy link
Member

@ciobanu0151 And to confirm, the above is resulting in a 10-20 second delay for the HTML being sent by the server?

@ciobanu0151
Copy link
Author

ciobanu0151 commented Nov 5, 2025

@westonruter Yea, the time added is for the html page given by wordpress .The time added can very based on your machine, for me on my local config can go to 10-20seconds, i tested on instawp it added around 5 seconds per page load, but it's still a lot for every page.

Here you can see the plugin page with the current code vs with the reference added. As i said the extra time can very based on your server but can be a lot like in this pictures:

Beta 2 code:
image

With fix applied:
image

@westonruter
Copy link
Member

@ciobanu0151 and the plugin doesn't have to be configured in any way after activation? Once active, accessing any admin screen will trigger the issue? cc @b1ink0

@ciobanu0151
Copy link
Author

@westonruter yea, no configuration needed, just install and activate the plugin, you can skip the initial setup. Then go any wp admin page so the assets are loaded. For example the plugins page. Look at the page load time with and without the fix. On production env the load time may not be so drastic as 10s but extra 3-5 seconds are still noticed. Just tested again on insta wp, on the plugins page the load time increases from 400ms to 5s

@ciobanu0151
Copy link
Author

ciobanu0151 commented Nov 5, 2025

@westonruter After further investigation I noticed that my initial solution was not ok, as it did not return the actual fetch priority if a handle was found a second time, it returned null. My proposal for the solution is to keep the checked array the same to be used to stop infinite loop from recursion and to add a new array to store already computed priorities. In case a handle is found a second time you already have the result and return it.

I'd keep the two problems seperate, the checked array is used to stop infinite loops, and the $stored_results is used to tackle big dependent trees that called many recursive calls adding those seconds in page load.

@b1ink0
Copy link

b1ink0 commented Nov 5, 2025

I can confirm this bug with the Kubio Plugin installed and activated when visiting any admin screen.

Without the fix, for the wp-i18n script, it took almost 2.2s to process, with a total of 320,455 recursive checks:

[FETCHPRIORITY TREE] ═══════════════════════════
[FETCHPRIORITY TREE] Summary for "wp-i18n":
[FETCHPRIORITY TREE] - Total recursive checks: 320455
[FETCHPRIORITY TREE] - Skipped (already checked): 0
[FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[FETCHPRIORITY TREE]    - "kubio-admin-area" checked 105880 times
[FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 72710 times
[FETCHPRIORITY TREE]    - "kubio-editor" checked 63949 times
[FETCHPRIORITY TREE]    - "kubio-ai" checked 27350 times
[FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 11884 times
[FETCHPRIORITY TREE]    - "kubio-block-library" checked 11097 times
[FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 5401 times
[FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 5318 times
[FETCHPRIORITY TREE]    - "kubio-format-library" checked 3527 times
[FETCHPRIORITY TREE]    - "kubio-inspectors" checked 2691 times
[FETCHPRIORITY TREE] ═══════════════════════════
[FETCHPRIORITY] Handle "wp-i18n" took 2206.71ms (Total so far: 2206.71ms across 1 scripts)
[FETCHPRIORITY TREE] ├─ 📦 wp-a11y [priority: auto, dependents: 39]
[FETCHPRIORITY TREE] ═══════════════════════════

And with the fix, this drops to 192ms and only 593 recursive checks.

[FETCHPRIORITY TREE] ├─ 📦 wp-i18n [priority: auto, dependents: 92]
[FETCHPRIORITY TREE] ═══════════════════════════
[FETCHPRIORITY TREE] Summary for "wp-i18n":
[FETCHPRIORITY TREE] - Total recursive checks: 593
[FETCHPRIORITY TREE] - Skipped (already checked): 477
[FETCHPRIORITY TREE] - Efficiency: 80.4% (lower is better)
[FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[FETCHPRIORITY TREE]    - "kubio-editor" checked 38 times
[FETCHPRIORITY TREE]    - "kubio-block-library" checked 27 times
[FETCHPRIORITY TREE]    - "wp-edit-site" checked 21 times
[FETCHPRIORITY TREE]    - "wp-editor" checked 20 times
[FETCHPRIORITY TREE]    - "kubio-ai" checked 20 times
[FETCHPRIORITY TREE]    - "kubio-controls" checked 20 times
[FETCHPRIORITY TREE]    - "kubio-block-editor" checked 20 times
[FETCHPRIORITY TREE]    - "wp-edit-post" checked 18 times
[FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 18 times
[FETCHPRIORITY TREE]    - "kubio-core" checked 16 times
[FETCHPRIORITY TREE] ═══════════════════════════
[FETCHPRIORITY] Handle "wp-i18n" took 192.76ms (Total so far: 192.76ms across 1 scripts)
[FETCHPRIORITY TREE] ├─ 📦 wp-a11y [priority: auto, dependents: 39]
[FETCHPRIORITY TREE] ═══════════════════════════

The bug occurs when multiple scripts share the same dependencies (diamond pattern), causing exponential redundant processing.

Without &$checked (passing by value):

Script A depends on B and C
Both B and C depend on D (shared dependency = diamond!)

When checking A:
1. Check BCheck D (processes D)
2. Check CCheck D (processes D AGAIN!)
   
Why? Each recursive call gets a COPY of $checked.
When we return from B, the fact that D was checked is LOST.
So C's branch doesn't know D was already processed.

With &$checked (passing by reference):

When checking A:
1. Check BCheck D (processes D, marks in shared $checked)
2. Check CCheck D (SKIPPED - already in shared $checked!)

The & makes ALL recursive calls share the SAME $checked array.
Once D is marked, ALL branches know about it.

Without fix:
wp-i18n has 92 dependents (Kubio modules)
Each module shares ~100+ common dependencies
Result: 320,455 recursive checks, 2.2 seconds
kubio-admin-area checked 105,880 times!

With fix:

Same dependency tree
Result: 593 recursive checks, 192ms
Each script checked once (or minimal times)

Patch for core for testing:

Note: Generated with the help of Claude.

diff --git a/src/wp-includes/class-wp-scripts.php b/src/wp-includes/class-wp-scripts.php
index ff226b5661..c7cc3eb85d 100644
--- a/src/wp-includes/class-wp-scripts.php
+++ b/src/wp-includes/class-wp-scripts.php
@@ -140,6 +140,22 @@ class WP_Scripts extends WP_Dependencies {
 	 */
 	private $delayed_strategies = array( 'defer', 'async' );
 
+	/**
+	 * Tracks total time spent calculating fetchpriority.
+	 *
+	 * @since 6.9.0
+	 * @var float
+	 */
+	private $fetchpriority_total_time = 0;
+
+	/**
+	 * Tracks number of fetchpriority calculations.
+	 *
+	 * @since 6.9.0
+	 * @var int
+	 */
+	private $fetchpriority_call_count = 0;
+
 	/**
 	 * Constructor.
 	 *
@@ -148,6 +164,9 @@ class WP_Scripts extends WP_Dependencies {
 	public function __construct() {
 		$this->init();
 		add_action( 'init', array( $this, 'init' ), 0 );
+		
+		// Log fetchpriority performance summary at the end
+		add_action( 'shutdown', array( $this, 'log_fetchpriority_performance' ), 999 );
 	}
 
 	/**
@@ -430,7 +449,27 @@ class WP_Scripts extends WP_Dependencies {
 		if ( null === $original_fetchpriority || ! $this->is_valid_fetchpriority( $original_fetchpriority ) ) {
 			$original_fetchpriority = 'auto';
 		}
+		
+		// Log timing for fetchpriority calculation
+		$fetchpriority_start = microtime( true );
 		$actual_fetchpriority = $this->get_highest_fetchpriority_with_dependents( $handle );
+		$fetchpriority_time = ( microtime( true ) - $fetchpriority_start ) * 1000;
+		
+		// Track cumulative stats
+		$this->fetchpriority_total_time += $fetchpriority_time;
+		$this->fetchpriority_call_count++;
+		
+		// Log if it took a significant amount of time (> 1ms)
+		if ( $fetchpriority_time > 1.0 ) {
+			error_log( sprintf(
+				'[FETCHPRIORITY] Handle "%s" took %.2fms (Total so far: %.2fms across %d scripts)',
+				$handle,
+				$fetchpriority_time,
+				$this->fetchpriority_total_time,
+				$this->fetchpriority_call_count
+			) );
+		}
+		
 		if ( null === $actual_fetchpriority ) {
 			// If null, it's likely this script was not explicitly enqueued, so in this case use the original priority.
 			$actual_fetchpriority = $original_fetchpriority;
@@ -1068,11 +1107,43 @@ JS;
 	 *
 	 * @param string              $handle  Script module ID.
 	 * @param array<string, true> $checked Optional. An array of already checked script handles, used to avoid recursive loops.
+	 * @param array               $stack   Optional. Stack trace for debugging dependency chains.
+	 * @param array               $stats   Optional. Statistics tracking for performance analysis.
 	 * @return string|null Highest fetch priority for the script and its dependents.
 	 */
-	private function get_highest_fetchpriority_with_dependents( string $handle, array $checked = array() ): ?string {
+	private function get_highest_fetchpriority_with_dependents( string $handle, array $checked = array(), $stack = array(), &$stats = null ): ?string {
+		// Initialize stats on first call (top level)
+		$is_top_level = empty( $stack );
+		if ( $is_top_level ) {
+			$stats = array(
+				'total_checks' => 0,
+				'skipped_checks' => 0,
+				'tree' => array(),
+				'handle_check_count' => array(),
+			);
+		}
+		
+		$stats['total_checks']++;
+		$stack[] = $handle;
+		$depth = count( $stack );
+		$indent = str_repeat( '  ', $depth - 1 );
+		
+		// Track how many times each handle is checked
+		if ( ! isset( $stats['handle_check_count'][ $handle ] ) ) {
+			$stats['handle_check_count'][ $handle ] = 0;
+		}
+		$stats['handle_check_count'][ $handle ]++;
+
 		// If there is a recursive dependency, return early.
 		if ( isset( $checked[ $handle ] ) ) {
+			$stats['skipped_checks']++;
+			if ( $is_top_level ) {
+				error_log( sprintf(
+					'[FETCHPRIORITY TREE] %s└─ ❌ %s (already checked - SKIPPED)',
+					$indent,
+					$handle
+				) );
+			}
 			return null;
 		}
 
@@ -1081,6 +1152,13 @@ JS;
 
 		// Abort if the script is not enqueued or a dependency of an enqueued script.
 		if ( ! $this->query( $handle, 'enqueued' ) ) {
+			if ( $is_top_level ) {
+				error_log( sprintf(
+					'[FETCHPRIORITY TREE] %s└─ ⚠️  %s (not enqueued - SKIPPED)',
+					$indent,
+					$handle
+				) );
+			}
 			return null;
 		}
 
@@ -1097,9 +1175,26 @@ JS;
 		$high_priority_index = count( $priorities ) - 1;
 
 		$highest_priority_index = (int) array_search( $fetchpriority, $priorities, true );
+		
+		$dependents = $this->get_dependents( $handle );
+		$has_dependents = ! empty( $dependents );
+		
+		// Log this node in the tree
+		if ( $is_top_level ) {
+			$tree_marker = $has_dependents ? '├─' : '└─';
+			error_log( sprintf(
+				'[FETCHPRIORITY TREE] %s%s 📦 %s [priority: %s, dependents: %d]',
+				$indent,
+				$tree_marker,
+				$handle,
+				$fetchpriority,
+				count( $dependents )
+			) );
+		}
+		
 		if ( $highest_priority_index !== $high_priority_index ) {
-			foreach ( $this->get_dependents( $handle ) as $dependent_handle ) {
-				$dependent_priority = $this->get_highest_fetchpriority_with_dependents( $dependent_handle, $checked );
+			foreach ( $dependents as $dependent_handle ) {
+				$dependent_priority = $this->get_highest_fetchpriority_with_dependents( $dependent_handle, $checked, $stack, $stats );
 				if ( is_string( $dependent_priority ) ) {
 					$highest_priority_index = max(
 						$highest_priority_index,
@@ -1111,6 +1206,32 @@ JS;
 				}
 			}
 		}
+		
+		// Log summary when we return to top level
+		if ( $is_top_level ) {
+			error_log( '[FETCHPRIORITY TREE] ═══════════════════════════' );
+			error_log( sprintf( '[FETCHPRIORITY TREE] Summary for "%s":', $handle ) );
+			error_log( sprintf( '[FETCHPRIORITY TREE] - Total recursive checks: %d', $stats['total_checks'] ) );
+			error_log( sprintf( '[FETCHPRIORITY TREE] - Skipped (already checked): %d', $stats['skipped_checks'] ) );
+			error_log( sprintf( '[FETCHPRIORITY TREE] - Efficiency: %.1f%% (lower is better)', 
+				$stats['total_checks'] > 0 ? ( $stats['skipped_checks'] / $stats['total_checks'] * 100 ) : 0 
+			) );
+			
+			// Show handles that were checked multiple times (indicates the bug!)
+			$multiple_checks = array_filter( $stats['handle_check_count'], function( $count ) {
+				return $count > 1;
+			} );
+			
+			if ( ! empty( $multiple_checks ) ) {
+				error_log( '[FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):' );
+				arsort( $multiple_checks );
+				foreach ( array_slice( $multiple_checks, 0, 10, true ) as $h => $count ) {
+					error_log( sprintf( '[FETCHPRIORITY TREE]    - "%s" checked %d times', $h, $count ) );
+				}
+			}
+			
+			error_log( '[FETCHPRIORITY TREE] ═══════════════════════════' );
+		}
 
 		return $priorities[ $highest_priority_index ];
 	}
@@ -1146,4 +1267,32 @@ JS;
 		$this->ext_version    = '';
 		$this->ext_handles    = '';
 	}
+
+	/**
+	 * Logs fetchpriority performance summary.
+	 *
+	 * @since 6.9.0
+	 */
+	public function log_fetchpriority_performance() {
+		if ( $this->fetchpriority_call_count === 0 ) {
+			return;
+		}
+
+		$avg_time = $this->fetchpriority_total_time / $this->fetchpriority_call_count;
+		
+		error_log( '========================================' );
+		error_log( '[FETCHPRIORITY SUMMARY]' );
+		error_log( sprintf( 'Total calculations: %d', $this->fetchpriority_call_count ) );
+		error_log( sprintf( 'Total time: %.2fms', $this->fetchpriority_total_time ) );
+		error_log( sprintf( 'Average time per script: %.2fms', $avg_time ) );
+		
+		if ( $this->fetchpriority_total_time > 100 ) {
+			error_log( '⚠️  WARNING: Fetchpriority calculations took > 100ms total!' );
+		}
+		if ( $this->fetchpriority_total_time > 1000 ) {
+			error_log( '🚨 CRITICAL: Fetchpriority calculations took > 1 second!' );
+		}
+		
+		error_log( '========================================' );
+	}
 }
Without Fix Full log:
[05-Nov-2025 08:01:08 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-i18n [priority: auto, dependents: 92]
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] ├─ 📦 jquery-core [priority: auto, dependents: 1]
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] Summary for "jquery-core":
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 52
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY] Handle "jquery-core" took 3.11ms (Total so far: 3.11ms across 1 scripts)
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] ├─ 📦 jquery-migrate [priority: auto, dependents: 1]
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] Summary for "jquery-migrate":
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 52
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY] Handle "jquery-migrate" took 1.25ms (Total so far: 4.36ms across 2 scripts)
[05-Nov-2025 08:01:10 UTC] ========================================
[05-Nov-2025 08:01:10 UTC] [FETCHPRIORITY SUMMARY]
[05-Nov-2025 08:01:10 UTC] Total calculations: 2
[05-Nov-2025 08:01:10 UTC] Total time: 4.36ms
[05-Nov-2025 08:01:10 UTC] Average time per script: 2.18ms
[05-Nov-2025 08:01:10 UTC] ========================================
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "wp-i18n":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 320455
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 105880 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 72710 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 63949 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 27350 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 11884 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 11097 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 5401 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 5318 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 3527 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 2691 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY] Handle "wp-i18n" took 2206.71ms (Total so far: 2206.71ms across 1 scripts)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-a11y [priority: auto, dependents: 39]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "wp-a11y":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 47117
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 15523 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 10659 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 9380 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 4006 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 1742 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 1628 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 787 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 778 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 520 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 394 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY] Handle "wp-a11y" took 233.37ms (Total so far: 2440.08ms across 2 scripts)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 common [priority: auto, dependents: 5]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "common":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 6
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 hoverintent-js [priority: auto, dependents: 1]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "hoverintent-js":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 2
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] └─ 📦 admin-bar [priority: auto, dependents: 0]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "admin-bar":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 underscore [priority: auto, dependents: 13]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "underscore":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 82
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "media-widgets" checked 6 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 6 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "customize-views" checked 5 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "media-views" checked 4 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "media-editor" checked 4 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "mce-view" checked 4 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "custom-background" checked 4 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-image-hub-integration-media-modal" checked 4 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "wp-backbone" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "revisions" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY] Handle "underscore" took 2.49ms (Total so far: 2444.87ms across 6 scripts)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-util [priority: auto, dependents: 14]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "wp-util":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 39
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "media-widgets" checked 3 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 3 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "media-views" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "customize-views" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "media-editor" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "mce-view" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "custom-background" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "kubio-image-hub-integration-media-modal" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY] Handle "wp-util" took 1.54ms (Total so far: 2446.41ms across 7 scripts)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-sanitize [priority: auto, dependents: 4]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "wp-sanitize":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 5
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] └─ 📦 updates [priority: auto, dependents: 0]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "updates":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 jquery-ui-core [priority: auto, dependents: 19]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "jquery-ui-core":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 39
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE]    - "jquery-touch-punch" checked 2 times
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY] Handle "jquery-ui-core" took 1.47ms (Total so far: 2449.36ms across 10 scripts)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 thickbox [priority: auto, dependents: 2]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "thickbox":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 3
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] └─ 📦 plugin-install [priority: auto, dependents: 0]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "plugin-install":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] └─ 📦 svg-painter [priority: auto, dependents: 0]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "svg-painter":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 heartbeat [priority: auto, dependents: 2]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "heartbeat":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 3
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] └─ 📦 wp-auth-check [priority: auto, dependents: 0]
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] Summary for "wp-auth-check":
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:11 UTC] [FETCHPRIORITY TREE] ├─ 📦 react [priority: auto, dependents: 28]
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] Summary for "react":
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1043217
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 344717 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 236705 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 208210 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 89044 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 38691 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 36129 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 17558 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 17294 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 11480 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 8758 times
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY] Handle "react" took 4398.78ms (Total so far: 6851.70ms across 16 scripts)
[05-Nov-2025 08:01:15 UTC] [FETCHPRIORITY TREE] ├─ 📦 react-dom [priority: auto, dependents: 10]
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] Summary for "react-dom":
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 320269
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 105812 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 72656 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 63912 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 27331 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 11876 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 11090 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 5387 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 5308 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 3525 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 2688 times
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY] Handle "react-dom" took 1336.18ms (Total so far: 8187.88ms across 17 scripts)
[05-Nov-2025 08:01:17 UTC] [FETCHPRIORITY TREE] ├─ 📦 react-jsx-runtime [priority: auto, dependents: 30]
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] Summary for "react-jsx-runtime":
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 262862
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 86817 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 59610 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 52443 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 22422 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 9744 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 9099 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 4414 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 4351 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 2891 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 2204 times
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY] Handle "react-jsx-runtime" took 1097.18ms (Total so far: 9285.05ms across 18 scripts)
[05-Nov-2025 08:01:18 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-deprecated [priority: auto, dependents: 22]
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] Summary for "wp-deprecated":
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 407796
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 134645 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 92463 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 81343 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 34766 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 15111 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 14111 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 6849 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 6754 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 4481 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 3420 times
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY] Handle "wp-deprecated" took 1691.35ms (Total so far: 10976.40ms across 19 scripts)
[05-Nov-2025 08:01:19 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-dom [priority: auto, dependents: 10]
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] Summary for "wp-dom":
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 146354
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 48328 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 33189 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 29196 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 12479 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 5424 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 5065 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 2460 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 2425 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 1608 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 1228 times
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY] Handle "wp-dom" took 691.95ms (Total so far: 11668.35ms across 20 scripts)
[05-Nov-2025 08:01:20 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-escape-html [priority: auto, dependents: 4]
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] Summary for "wp-escape-html":
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 341351
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 112776 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 77441 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 68119 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 29128 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-block-patterns" checked 12658 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 11820 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-advanced-panel" checked 5744 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-third-party-blocks" checked 5659 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 3757 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE]    - "kubio-inspectors" checked 2865 times
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY] Handle "wp-escape-html" took 1543.44ms (Total so far: 13211.79ms across 21 scripts)
[05-Nov-2025 08:01:22 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-element [priority: auto, dependents: 52]
[05-Nov-2025 08:01:23 UTC] [FETCHPRIORITY TREE] ═══════════════════════════

// Removed a lot of logs due to GitHub comment limit!

═══════════════════════════
[05-Nov-2025 08:01:29 UTC] [FETCHPRIORITY] Handle "kubio-admin-area" took 2.01ms (Total so far: 21053.09ms across 106 scripts)
[05-Nov-2025 08:01:29 UTC] ========================================
[05-Nov-2025 08:01:29 UTC] [FETCHPRIORITY SUMMARY]
[05-Nov-2025 08:01:29 UTC] Total calculations: 106
[05-Nov-2025 08:01:29 UTC] Total time: 21053.09ms
[05-Nov-2025 08:01:29 UTC] Average time per script: 198.61ms
[05-Nov-2025 08:01:29 UTC] ⚠️  WARNING: Fetchpriority calculations took > 100ms total!
[05-Nov-2025 08:01:29 UTC] 🚨 CRITICAL: Fetchpriority calculations took > 1 second!
[05-Nov-2025 08:01:29 UTC] ========================================
With the Fix Full Log:
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-i18n [priority: auto, dependents: 92]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-i18n":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 593
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 477
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 80.4% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 38 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 27 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 21 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-i18n" took 192.76ms (Total so far: 192.76ms across 1 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-a11y [priority: auto, dependents: 39]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-a11y":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 287
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 206
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 71.8% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 22 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 15 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 11 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 10 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 10 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 10 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 8 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 8 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-a11y" took 25.99ms (Total so far: 218.75ms across 2 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 common [priority: auto, dependents: 5]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "common":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 6
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "common" took 44.82ms (Total so far: 263.57ms across 3 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 hoverintent-js [priority: auto, dependents: 1]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "hoverintent-js":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 2
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "hoverintent-js" took 9.96ms (Total so far: 273.54ms across 4 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] └─ 📦 admin-bar [priority: auto, dependents: 0]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "admin-bar":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "admin-bar" took 21.66ms (Total so far: 295.20ms across 5 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 underscore [priority: auto, dependents: 13]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "underscore":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 51
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 11
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 21.6% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-backbone" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "media-views" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "customize-views" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "media-widgets" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-playlist" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "customize-models" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-api" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "text-widgets" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "custom-html-widgets" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "underscore" took 54.92ms (Total so far: 350.12ms across 6 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-util [priority: auto, dependents: 14]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-util":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 32
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 3
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 9.4% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "media-views" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "media-widgets" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-util" took 4.51ms (Total so far: 354.64ms across 7 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-sanitize [priority: auto, dependents: 4]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-sanitize":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 5
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-sanitize" took 7.74ms (Total so far: 362.37ms across 8 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] └─ 📦 updates [priority: auto, dependents: 0]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "updates":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "updates" took 6.93ms (Total so far: 369.30ms across 9 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 jquery-ui-core [priority: auto, dependents: 19]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "jquery-ui-core":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 39
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 1
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 2.6% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "jquery-touch-punch" checked 2 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "jquery-ui-core" took 14.37ms (Total so far: 383.67ms across 10 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 thickbox [priority: auto, dependents: 2]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "thickbox":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 3
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "thickbox" took 1.64ms (Total so far: 385.30ms across 11 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] └─ 📦 plugin-install [priority: auto, dependents: 0]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "plugin-install":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "plugin-install" took 1.21ms (Total so far: 386.51ms across 12 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] └─ 📦 svg-painter [priority: auto, dependents: 0]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "svg-painter":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "svg-painter" took 1.92ms (Total so far: 388.44ms across 13 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 heartbeat [priority: auto, dependents: 2]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "heartbeat":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 3
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "heartbeat" took 3.65ms (Total so far: 392.08ms across 14 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] └─ 📦 wp-auth-check [priority: auto, dependents: 0]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-auth-check":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 1
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 0
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 0.0% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-auth-check" took 1.93ms (Total so far: 394.01ms across 15 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 react [priority: auto, dependents: 28]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "react":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 543
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 477
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 87.8% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 37 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 25 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 22 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 21 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 21 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 15 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "react" took 7.16ms (Total so far: 401.17ms across 16 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 react-dom [priority: auto, dependents: 10]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "react-dom":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 485
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 421
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 86.8% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 36 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 24 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "react-dom" took 6.24ms (Total so far: 407.42ms across 17 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 react-jsx-runtime [priority: auto, dependents: 30]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "react-jsx-runtime":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 446
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 384
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 86.1% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 33 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 23 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 13 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "react-jsx-runtime" took 5.78ms (Total so far: 413.20ms across 18 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-deprecated [priority: auto, dependents: 22]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-deprecated":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 407
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 344
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 84.5% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 31 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 15 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 13 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-deprecated" took 5.83ms (Total so far: 419.03ms across 19 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-dom [priority: auto, dependents: 10]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-dom":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 377
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 318
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 84.4% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 30 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 15 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 13 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 12 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-dom" took 9.42ms (Total so far: 428.45ms across 20 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-escape-html [priority: auto, dependents: 4]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-escape-html":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 479
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 415
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 86.6% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 35 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 24 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-escape-html" took 12.72ms (Total so far: 441.17ms across 21 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-element [priority: auto, dependents: 52]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-element":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 475
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 412
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 86.7% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 35 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 24 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 19 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 18 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 17 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-element" took 4.98ms (Total so far: 446.15ms across 22 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-is-shallow-equal [priority: auto, dependents: 10]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-is-shallow-equal":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 377
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 318
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Efficiency: 84.4% (lower is better)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 30 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 20 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 16 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 15 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 14 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 13 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 13 times
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY] Handle "wp-is-shallow-equal" took 8.66ms (Total so far: 454.81ms across 23 scripts)
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-keycodes [priority: auto, dependents: 15]
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] Summary for "wp-keycodes":
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 382
[05-Nov-2025 08:03:48 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 323
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 84.6% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 31 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 21 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 17 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 16 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-keycodes" took 22.85ms (Total so far: 477.66ms across 24 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-priority-queue [priority: auto, dependents: 4]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-priority-queue":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 371
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 312
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 84.1% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 30 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 20 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 16 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-priority-queue" took 15.41ms (Total so far: 493.07ms across 25 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-compose [priority: auto, dependents: 34]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-compose":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 367
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 309
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 84.2% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 30 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 20 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 16 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-compose" took 4.07ms (Total so far: 497.14ms across 26 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 moment [priority: auto, dependents: 2]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "moment":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 207
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 159
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 76.8% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 20 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "moment" took 2.12ms (Total so far: 499.26ms across 27 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-date [priority: auto, dependents: 8]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-date":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 205
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 158
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 77.1% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 20 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-date" took 4.36ms (Total so far: 503.62ms across 28 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-html-entities [priority: auto, dependents: 16]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-html-entities":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 242
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 195
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 80.6% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 22 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-html-entities" took 6.44ms (Total so far: 510.06ms across 29 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-primitives [priority: auto, dependents: 27]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-primitives":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 268
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 218
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 81.3% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 26 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 18 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-primitives" took 15.63ms (Total so far: 525.69ms across 30 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-private-apis [priority: auto, dependents: 20]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-private-apis":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 354
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 296
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 83.6% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 30 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 19 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 16 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 14 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-block-library" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-private-apis" took 9.73ms (Total so far: 535.42ms across 31 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-redux-routine [priority: auto, dependents: 1]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-redux-routine":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 326
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 270
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 82.8% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 28 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 19 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-redux-routine" took 2.73ms (Total so far: 538.15ms across 32 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-data [priority: auto, dependents: 45]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-data":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 325
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 270
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 83.1% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 28 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 19 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-editor" checked 12 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-data" took 3.34ms (Total so far: 541.49ms across 33 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-rich-text [priority: auto, dependents: 10]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-rich-text":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 236
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 188
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 79.7% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 21 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-rich-text" took 17.00ms (Total so far: 558.50ms across 34 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-warning [priority: auto, dependents: 7]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-warning":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 233
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 186
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 79.8% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 21 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 11 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-warning" took 2.32ms (Total so far: 560.82ms across 35 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-components [priority: auto, dependents: 36]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-components":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 197
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 153
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 77.7% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 20 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 13 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 10 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-controls" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-core" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-components" took 2.13ms (Total so far: 562.95ms across 36 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-keyboard-shortcuts [priority: auto, dependents: 10]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-keyboard-shortcuts":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 126
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 93
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 73.8% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 16 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 6 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 6 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-customize-widgets" checked 5 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 5 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-editor" checked 5 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-keyboard-shortcuts" took 1.93ms (Total so far: 564.88ms across 37 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-commands [priority: auto, dependents: 6]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] Summary for "wp-commands":
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Total recursive checks: 116
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Skipped (already checked): 84
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] - Efficiency: 72.4% (lower is better)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ⚠️  REDUNDANT CHECKS DETECTED (this is the bug!):
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-editor" checked 15 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-block-library" checked 9 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-ai" checked 8 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-site" checked 7 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-post" checked 6 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-admin-area" checked 6 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-edit-widgets" checked 5 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-woocommerce-styles" checked 5 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "kubio-format-library" checked 5 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE]    - "wp-customize-widgets" checked 4 times
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY] Handle "wp-commands" took 2.01ms (Total so far: 566.89ms across 38 scripts)
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ├─ 📦 wp-url [priority: auto, dependents: 28]
[05-Nov-2025 08:03:49 UTC] [FETCHPRIORITY TREE] ═══════════════════════════

// Removed a lot of logs due to GitHub comment limit!

═══════════════════════════
[05-Nov-2025 08:03:50 UTC] [FETCHPRIORITY] Handle "kubio-admin-area" took 2.17ms (Total so far: 1567.19ms across 106 scripts)
[05-Nov-2025 08:03:50 UTC] ========================================
[05-Nov-2025 08:03:50 UTC] [FETCHPRIORITY SUMMARY]
[05-Nov-2025 08:03:50 UTC] Total calculations: 106
[05-Nov-2025 08:03:50 UTC] Total time: 1567.19ms
[05-Nov-2025 08:03:50 UTC] Average time per script: 14.78ms
[05-Nov-2025 08:03:50 UTC] ⚠️  WARNING: Fetchpriority calculations took > 100ms total!
[05-Nov-2025 08:03:50 UTC] 🚨 CRITICAL: Fetchpriority calculations took > 1 second!
[05-Nov-2025 08:03:50 UTC] ========================================

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants