diff --git a/.env.example b/.env.example
index 09ab8607e00de47cb0dd62e7b600d7981f8640b3..70ef6f85c7a7d0bbbac675f7fdb4db9ae4e01a50 100644
--- a/.env.example
+++ b/.env.example
@@ -194,11 +194,11 @@ PUBLIC_HOSTNAME="your.hostname.com"
 
 # PostgREST server log levels
 # https://docs.postgrest.org/en/latest/references/configuration.html#log-level
-BALANCE_TRACKER_SERVER_LOG_LEVEL=error
-BLOCK_EXPLORER_SERVER_LOG_LEVEL=error
-HAFAH_SERVER_LOG_LEVEL=error
-HIVEMIND_SERVER_LOG_LEVEL=error
-REPUTATION_TRACKER_SERVER_LOG_LEVEL=error
+#BALANCE_TRACKER_SERVER_LOG_LEVEL=error
+#BLOCK_EXPLORER_SERVER_LOG_LEVEL=error
+#HAFAH_SERVER_LOG_LEVEL=error
+#HIVEMIND_SERVER_LOG_LEVEL=error
+#REPUTATION_TRACKER_SERVER_LOG_LEVEL=error
 
 # There are several ways you can configure serving HTTP/HTTPS.  Some examples:
 # - to serve API using HTTPS with automatic redirect from HTTP -> HTTPS (the default), 
diff --git a/balance_tracker.yaml b/balance_tracker.yaml
index 3f44ae0323a28ac5daeb2155decd3b50991ba94f..2098a20a7e7b49b39f64bc356c005045b1074ffb 100644
--- a/balance_tracker.yaml
+++ b/balance_tracker.yaml
@@ -74,7 +74,7 @@ services:
       PGRST_DB_POOL_ACQUISITION_TIMEOUT: 10
       PGRST_DB_EXTRA_SEARCH_PATH: ${BTRACKER_SCHEMA:-hafbe_bal}
       # PGRST_OPENAPI_SERVER_PROXY_URI: http://${PUBLIC_HOSTNAME}/btracker_api/
-      PGRST_LOG_LEVEL: ${BALANCE_TRACKER_SERVER_LOG_LEVEL}
+      PGRST_LOG_LEVEL: ${BALANCE_TRACKER_SERVER_LOG_LEVEL:-error}
     healthcheck:
       test: ["CMD-SHELL", "wget --timeout=2 -nv -t1 --spider 127.0.0.1:3001/ready || exit 1"]
       interval: 10s
diff --git a/haf_block_explorer.yaml b/haf_block_explorer.yaml
index f120ccb81a26a4fb680bc1b36825be557a7ab9c5..7bf5d13bfcb97bd6156657d106c65dd78d704079 100644
--- a/haf_block_explorer.yaml
+++ b/haf_block_explorer.yaml
@@ -121,7 +121,7 @@ services:
       PGRST_DB_ROOT_SPEC: root
       PGRST_DB_EXTRA_SEARCH_PATH: hafbe_bal, reptracker_app
       # PGRST_OPENAPI_SERVER_PROXY_URI: http://${PUBLIC_HOSTNAME}/hafbe_api/
-      PGRST_LOG_LEVEL: ${BLOCK_EXPLORER_SERVER_LOG_LEVEL}
+      PGRST_LOG_LEVEL: ${BLOCK_EXPLORER_SERVER_LOG_LEVEL:-error}
     networks:
       haf-network:
     healthcheck:
diff --git a/hafah.yaml b/hafah.yaml
index 43ab4c9d4e3cd399c0be0a87ae355b635c1d01d0..1dd6347f1bc6813948b7b3bc051c56200252f56e 100644
--- a/hafah.yaml
+++ b/hafah.yaml
@@ -44,7 +44,7 @@ services:
       PGRST_DB_POOL: 20
       PGRST_DB_POOL_ACQUISITION_TIMEOUT: 10
       PGRST_OPENAPI_SERVER_PROXY_URI: http://127.0.0.1:3000
-      PGRST_LOG_LEVEL: ${HAFAH_SERVER_LOG_LEVEL}
+      PGRST_LOG_LEVEL: ${HAFAH_SERVER_LOG_LEVEL:-error}
     networks:
       haf-network:
     healthcheck:
diff --git a/hivemind.yaml b/hivemind.yaml
index 4c321f1003173458f9cb717fd226b416ddd2e125..cf3c6c1c3b41b6c2fc34124cd1990b2de02d4478 100644
--- a/hivemind.yaml
+++ b/hivemind.yaml
@@ -86,7 +86,7 @@ services:
       PGRST_OPENAPI_MODE: "disabled" # unclear why this is set, I guess because we currently only support json-rpc?
       # when debugging, you can enable this
       # PGRST_DB_PLAN_ENABLED: true
-      PGRST_LOG_LEVEL: ${HIVEMIND_SERVER_LOG_LEVEL}
+      PGRST_LOG_LEVEL: ${HIVEMIND_SERVER_LOG_LEVEL:-error}
     healthcheck:
       test: ["CMD-SHELL", "wget --timeout=2 -nv -t1 --spider 127.0.0.1:3001/ready || exit 1"]
       interval: 10s
diff --git a/reputation_tracker.yaml b/reputation_tracker.yaml
index 08d6ba73a7df63096dd5d309115ec953f2c8ca4b..cf84b2675404be01763bf5f95ffb90ccb93cb357 100644
--- a/reputation_tracker.yaml
+++ b/reputation_tracker.yaml
@@ -71,7 +71,7 @@ services:
       PGRST_DB_POOL_ACQUISITION_TIMEOUT: 10
       PGRST_DB_EXTRA_SEARCH_PATH: reptracker_app
       # PGRST_OPENAPI_SERVER_PROXY_URI: http://${PUBLIC_HOSTNAME}/reptracker_user/
-      PGRST_LOG_LEVEL: ${REPUTATION_TRACKER_SERVER_LOG_LEVEL}
+      PGRST_LOG_LEVEL: ${REPUTATION_TRACKER_SERVER_LOG_LEVEL:-error}
     healthcheck:
       test: ["CMD-SHELL", "wget --timeout=2 -nv -t1 --spider 127.0.0.1:3001/ready || exit 1"]
       interval: 10s
diff --git a/swagger.yaml b/swagger.yaml
index c18fbe8feaa7592e49e012a3c1f251dec734db41..341adbaa569039bdd541fb70710ddd3b258095cf 100644
--- a/swagger.yaml
+++ b/swagger.yaml
@@ -14,13 +14,3 @@ services:
       haf-network:
     #healthcheck:
     #  test: ["CMD-SHELL","curl -f localhost:8080"]
-    # Only HAfAH is started by default
-    depends_on:
-    #   balance-tracker-postgrest:
-    #     condition: service_started
-    #   reputation-tracker-postgrest:
-    #     condition: service_started
-      hafah-postgrest:
-        condition: service_started
-    #   block-explorer-postgrest:
-    #     condition: service_started