removed debugging log

This commit is contained in:
Robb Ebright 2020-01-06 13:58:31 -05:00
parent edaa2ead85
commit 211ce99a2c
1 changed files with 0 additions and 1 deletions

View File

@ -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 {