Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Export console logging functions to extensions #1886

Closed
westonruter opened this issue Feb 26, 2025 · 3 comments · Fixed by #1895
Closed

Export console logging functions to extensions #1886

westonruter opened this issue Feb 26, 2025 · 3 comments · Fixed by #1895
Labels
[Plugin] Optimization Detective Issues for the Optimization Detective plugin [Type] Enhancement A suggestion for improvement of an existing feature

Comments

@westonruter
Copy link
Member

I just learned about console.context() via https://devtoolstips.org/tips/en/create-contextual-console-loggers/

This can be used to filter messages by the context via the context: operator in the filter search box.

We could create info, warn, and log, error functions which we expose to the client-side extensions' initialize() and finalize() functions as well. Maybe these functions could automatically take into account the value of isDebug coming from WP_DEBUG in PHP, so that they automatically no-op when called. That would avoid the need to wrap calls in if ( isDebug ) { ... } all the time in extensions.

@westonruter westonruter added [Plugin] Optimization Detective Issues for the Optimization Detective plugin [Type] Enhancement A suggestion for improvement of an existing feature labels Feb 26, 2025
@github-project-automation github-project-automation bot moved this to Not Started/Backlog 📆 in WP Performance 2025 Feb 26, 2025
@ShyamGadde
Copy link
Contributor

I noticed that console.context() is currently "an experiment in Chromium-based browsers only" according to the article you linked. This might cause errors in Firefox, Safari, and other non-Chromium browsers.

Would it make sense to implement simple feature detection before using it? Maybe something like:

function createLogger(...) {
    ...
    if (typeof console.context === 'function') {
        // Use console.context
    } else {
        // Fall back to regular console with prefixed messages
    }
    ...
}

This way we could still benefit from context in supported browsers.

@westonruter
Copy link
Member Author

@ShyamGadde yes, that makes sense. That being said, if this is experimental maybe it's too early to ship.

In the mean time, we could look at exporting log, info, warn, and error functions to the async initialize and finalize functions used by extensions which include the isDebug check by default.

This would eliminate the following code:

/**
* Logs a message.
*
* @param {...*} message
*/
function log( ...message ) {
// eslint-disable-next-line no-console
console.log( consoleLogPrefix, ...message );
}
/**
* Logs an error.
*
* @param {...*} message
*/
function error( ...message ) {
// eslint-disable-next-line no-console
console.error( consoleLogPrefix, ...message );
}

/**
* Logs a message.
*
* @since 0.3.0
*
* @param {...*} message
*/
function log( ...message ) {
// eslint-disable-next-line no-console
console.log( consoleLogPrefix, ...message );
}

And if the functions included the isDebug checks by default, we could remove the conditions from:

if ( isDebug ) {
log( 'Loaded embed content rects:', loadedElementContentRects );
}

if ( isDebug ) {
const elementData = getElementData( xpath );
log(
`boundingClientRect for ${ xpath } resized:`,
elementData.boundingClientRect,
'=>',
domRect
);
}

if ( isDebug ) {
log( `Resized element ${ xpath }:`, entry.contentRect );
}

if ( entry.url.length > 500 ) {
if ( isDebug ) {
log( `Skipping very long URL: ${ entry.url }` );
}
return;
}
// Also skip Custom Elements which have excessively long tag names. This is the maxLength defined in image_prioritizer_add_element_item_schema_properties().
if ( entry.element.tagName.length > 100 ) {
if ( isDebug ) {
log(
`Skipping very long tag name: ${ entry.element.tagName }`
);
}
return;
}

And so on.

@westonruter
Copy link
Member Author

We can revisit console.context() when it becomes stable.

@github-project-automation github-project-automation bot moved this from To Do 🔧 to Done 😃 in WP Performance 2025 Mar 3, 2025
@westonruter westonruter changed the title Use console.context() for logging in Optimization Detective and export console logging functions to extensions Export console logging functions to extensions Mar 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
[Plugin] Optimization Detective Issues for the Optimization Detective plugin [Type] Enhancement A suggestion for improvement of an existing feature
Projects
Status: Done 😃
2 participants