You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some console logs are always shown when using the library, which is polluting our logs and is not necessary. To not output some undesired logs, I remove one occurrence and hide the second under logLevel=debug
We use these lines to troubleshoot library load issues; not seeing the 'Loaded ...' message confirms a problem with the plugin.
The changes proposed in the PR remove these lines, and the if(logLevel === "debug") { check is always false, there's no way to enable it since these lines are the plugin’s first method calls. I’ll have to reject the PR, as it would make it harder to troubleshoot native library loading issues.
Description
Some console logs are always shown when using the library, which is polluting our logs and is not necessary. To not output some undesired logs, I remove one occurrence and hide the second under logLevel=debug
In our project, I see the following:
See suggested changes in this PR
The text was updated successfully, but these errors were encountered: