From f925ec71e3880a730790bf20a824442eb95aa8cc Mon Sep 17 00:00:00 2001 From: Maria Carmina Date: Thu, 22 Sep 2022 23:23:05 +0300 Subject: [PATCH] Resolved requested changes. --- compose-files/thegraph.yml | 2 +- start_ocean.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compose-files/thegraph.yml b/compose-files/thegraph.yml index 1bf5d4b..8dffbe8 100644 --- a/compose-files/thegraph.yml +++ b/compose-files/thegraph.yml @@ -22,7 +22,7 @@ services: postgres_db: graph-node ipfs: '172.15.0.16:5001' ethereum: 'development:${NETWORK_RPC_URL}' - SUBGRAPH_LOG_LEVEL: ${SUBGRAPH_LOG_LEVEL} + RUST_LOG: ${SUBGRAPH_LOG_LEVEL} postgres: image: postgres ports: diff --git a/start_ocean.sh b/start_ocean.sh index 8fdd228..323dcc0 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -47,7 +47,7 @@ export FORCEPULL="false" # Export LOG LEVEL export AQUARIUS_LOG_LEVEL=${AQUARIUS_LOG_LEVEL:-INFO} export PROVIDER_LOG_LEVEL=${PROVIDER_LOG_LEVEL:-INFO} -export SUBGRAPH_LOG_LEVEL=${SUBGRAPH_LOG_LEVEL:-INFO} +export SUBGRAPH_LOG_LEVEL=${SUBGRAPH_LOG_LEVEL:-info} # Export User UID and GID export LOCAL_USER_ID=$(id -u)