-
Notifications
You must be signed in to change notification settings - Fork 110
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
Comments
I noticed that 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. |
@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 This would eliminate the following code: performance/plugins/embed-optimizer/detect.js Lines 21 to 39 in 4a79036
performance/plugins/image-prioritizer/detect.js Lines 34 to 44 in 4a79036
And if the functions included the performance/plugins/embed-optimizer/detect.js Lines 64 to 66 in 4a79036
performance/plugins/embed-optimizer/detect.js Lines 85 to 93 in 4a79036
performance/plugins/embed-optimizer/detect.js Lines 118 to 120 in 4a79036
performance/plugins/image-prioritizer/detect.js Lines 100 to 115 in 4a79036
And so on. |
We can revisit |
console.context()
for logging in Optimization Detective and export console logging functions to extensions
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
, andlog
,error
functions which we expose to the client-side extensions'initialize()
andfinalize()
functions as well. Maybe these functions could automatically take into account the value ofisDebug
coming fromWP_DEBUG
in PHP, so that they automatically no-op when called. That would avoid the need to wrap calls inif ( isDebug ) { ... }
all the time in extensions.The text was updated successfully, but these errors were encountered: