07-20-2018, 09:25 PM
(This post was last modified: 07-20-2018, 09:26 PM by Tim Curtis.)
moOde's worker daemon polls every 3 secs for things to do so it might be worth logging the wake up event to see if it correlates with the audio glitch.
Add the workerLog() line to the following code block in /var/www/command/worker.php
Then reboot and while playing a bluetooth stream monitor the moOde log
-Tim
Add the workerLog() line to the following code block in /var/www/command/worker.php
Code:
//
// BEGIN WORKER JOB LOOP
//
while (1) {
sleep(3);
workerLog('wakeup');
Then reboot and while playing a bluetooth stream monitor the moOde log
Code:
tail -f /var/log/moode.log
-Tim