diff --git a/airtime_mvc/application/views/scripts/embed/player.phtml b/airtime_mvc/application/views/scripts/embed/player.phtml index 01543cd0d..44131af61 100644 --- a/airtime_mvc/application/views/scripts/embed/player.phtml +++ b/airtime_mvc/application/views/scripts/embed/player.phtml @@ -238,7 +238,7 @@ } // variables for updating the player's metadata - var time_to_next_track_starts; + var time_to_next_track_starts = 0; var metadataTimer; // Fetches the streams metadata from the Airtime live-info API @@ -271,7 +271,6 @@ } else { $("ul.schedule_list").find("li").html(data.next.name); } - } }); // Add 3 seconds to the timeout so Airtime has time to update the metadata before we fetch it diff --git a/python_apps/airtime_analyzer/airtime_analyzer/airtime_analyzer.py b/python_apps/airtime_analyzer/airtime_analyzer/airtime_analyzer.py index fed305ec1..e29f595b5 100644 --- a/python_apps/airtime_analyzer/airtime_analyzer/airtime_analyzer.py +++ b/python_apps/airtime_analyzer/airtime_analyzer/airtime_analyzer.py @@ -60,6 +60,9 @@ class AirtimeAnalyzerServer: #Disable most pika/rabbitmq logging: pika_logger = logging.getLogger('pika') pika_logger.setLevel(logging.CRITICAL) + + boto_logger = logging.getLogger('auth') + boto_logger.setLevel(logging.CRITICAL) # Set up logging logFormatter = logging.Formatter("%(asctime)s [%(module)s] [%(levelname)-5.5s] %(message)s")