summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Newson <rnewson@apache.org>2023-04-26 19:45:12 +0100
committerRobert Newson <rnewson@apache.org>2023-04-27 10:32:15 +0100
commit5df9dbe8cd476bb731f838e7901e1896ab549a76 (patch)
treeffd66b4448571451a8da05d85578ca37fc084ca9
parent210e80e031cf394300ae6595fc1c7cc119f6d869 (diff)
downloadcouchdb-5df9dbe8cd476bb731f838e7901e1896ab549a76.tar.gz
capture warn/error in entirety
-rw-r--r--Makefile8
-rw-r--r--nouveau/nouveau.yaml3
-rw-r--r--test/elixir/test/config/test-config.ini3
3 files changed, 10 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index ef2360efe..f5c141369 100644
--- a/Makefile
+++ b/Makefile
@@ -295,10 +295,10 @@ elixir-source-checks: elixir-init
# target: build-report - Generate a build report
build-report:
build-aux/show-test-results.py --suites=10 --tests=10 > test-results.log || true
- tail -n1000 ./dev/logs/node1.log || true
- tail -n1000 ./dev/logs/nouveau.log || true
- tail -n1000 ./tmp/couch.log || true
- tail test-results.log || true
+ cat ./dev/logs/node1.log || true
+ cat ./dev/logs/nouveau.log || true
+ cat ./tmp/couch.log || true
+ cat test-results.log || true
.PHONY: check-qs
# target: check-qs - Run query server tests (ruby and rspec required!)
diff --git a/nouveau/nouveau.yaml b/nouveau/nouveau.yaml
index 59176bb7a..9e45bd711 100644
--- a/nouveau/nouveau.yaml
+++ b/nouveau/nouveau.yaml
@@ -3,6 +3,9 @@ commitIntervalSeconds: 30
idleSeconds: 60
rootDir: target/indexes
+logging:
+ level: WARN
+
server:
applicationConnectors:
- type: h2c
diff --git a/test/elixir/test/config/test-config.ini b/test/elixir/test/config/test-config.ini
index fb47c5a4c..423cc492c 100644
--- a/test/elixir/test/config/test-config.ini
+++ b/test/elixir/test/config/test-config.ini
@@ -1,3 +1,6 @@
+[log]
+level = warn
+
[chttpd]
authentication_handlers = {chttpd_auth, jwt_authentication_handler}, {chttpd_auth, proxy_authentication_handler}, {chttpd_auth, cookie_authentication_handler}, {chttpd_auth, default_authentication_handler}