Disable console output from Notix tag

This example shows how to remove all output into browser console. Tag becomes silent, but also disappears possibility to define what's wrong with setup if something does not work.

Example

        <script>
            var s = document.createElement("script")
            s.src = "https://notix.io/ent/current/enot.min.js"
            s.onload = function (sdk) {
                sdk.startInstall({
                    appId: "YOUR-APP-ID-HERE",
                    loadSettings: true,
                    disableConsoleDebug: true
                })
            }
            document.head.append(s)
        </script>