Well, assuming the rest of the file is not changed then your configuration is correct and you should see such debug logging in the log files (NB: the log on the console would not change with such settings as the console -LSConsole- appender is only configured for init and license categories).
As per the issue with the strict loop, I think that's not a problem with your CPU: please note that JavaScript is mono-thread and that our library executes "commands" (see as an example the
sendMessage lifecycle documentation) asynchronously so that if you keep the CPU occupied with a huge loop our library will not have any chance to send the messages to the server as it will receive its share of CPU only when such loop is terminated.
HTH