Open dprevost-LMI opened 2 months ago
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.
Interesting; if I change that for a disabled flag, would my PR be rejected again?
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