aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorprovokateurin <kate@provokateurin.de>2025-06-03 17:53:19 +0200
committerprovokateurin <kate@provokateurin.de>2025-06-03 17:53:19 +0200
commit71b08c23093736c62a49d7e380dbabea9453f0d0 (patch)
treefa6c2862df97df552edfeba7a56e094274ee7640
parentf25d66008b7af7291b78521708f76bc9da6f2365 (diff)
downloadnextcloud-server-chore/integration/hide-webserver-logs.tar.gz
nextcloud-server-chore/integration/hide-webserver-logs.zip
chore(integration): Hide webserver logschore/integration/hide-webserver-logs
Signed-off-by: provokateurin <kate@provokateurin.de>
-rwxr-xr-xbuild/integration/run.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/build/integration/run.sh b/build/integration/run.sh
index cbd3cceb3d1..bc833648359 100755
--- a/build/integration/run.sh
+++ b/build/integration/run.sh
@@ -53,14 +53,8 @@ PHP_CLI_SERVER_WORKERS=2 php -S localhost:$PORT -t ../.. &> phpserver.log &
PHPPID=$!
echo $PHPPID
-# Output filtered php server logs
-tail -f phpserver.log | grep --line-buffered -v -E ":[0-9]+ Accepted$" | grep --line-buffered -v -E ":[0-9]+ Closing$" &
-LOGPID=$!
-echo $LOGPID
-
function cleanup() {
kill $PHPPID
- kill $LOGPID
}
trap cleanup EXIT