X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/7f10264fb6d4cc89ca818b822e8db10aeefd969e..d9e0ef0ebfbc2860e7c0b7e7510a4014300074be:/lib/cmd.php diff --git a/lib/cmd.php b/lib/cmd.php index 9ec290d1..44923618 100644 --- a/lib/cmd.php +++ b/lib/cmd.php @@ -185,6 +185,10 @@ function runSQLScript($sScript, $bfatal = true, $bVerbose = false, $bIgnoreError fail('unable to start pgsql'); } + if (!$bVerbose) { + fwrite($ahPipes[0], 'set client_min_messages to WARNING;'); + } + while (strlen($sScript)) { $iWritten = fwrite($ahPipes[0], $sScript); if ($iWritten <= 0) break; @@ -203,7 +207,8 @@ function runWithEnv($sCmd, $aEnv) $aFDs = array( 0 => array('pipe', 'r'), 1 => STDOUT, - 2 => STDERR); + 2 => STDERR + ); $aPipes = null; $hProc = @proc_open($sCmd, $aFDs, $aPipes, null, $aEnv); if (!is_resource($hProc)) {