From 211ce99a2cd431241c9edacf6a13849b49e1ca39 Mon Sep 17 00:00:00 2001 From: Robb Ebright Date: Mon, 6 Jan 2020 13:58:31 -0500 Subject: [PATCH] removed debugging log --- airtime_mvc/public/setup/database-setup.php | 1 - 1 file changed, 1 deletion(-) diff --git a/airtime_mvc/public/setup/database-setup.php b/airtime_mvc/public/setup/database-setup.php index 1fa894255..a3e3ff2b6 100644 --- a/airtime_mvc/public/setup/database-setup.php +++ b/airtime_mvc/public/setup/database-setup.php @@ -187,7 +187,6 @@ class DatabaseSetup extends Setup { $icecast_pass_txt = file(LIBRETIME_CONF_DIR . '/icecast_pass'); $icecast_pass = $icecast_pass_txt[0]; $icecast_pass = str_replace(PHP_EOL, '', $icecast_pass); - error_log($icecast_pass); $statement = self::$dbh->prepare("UPDATE cc_stream_setting SET value = :icecastpass WHERE keyname = 's1_pass'"); $statement->bindValue(':icecastpass', $icecast_pass, PDO::PARAM_STR); try {