diff --git a/compose-files/thegraph.yml b/compose-files/thegraph.yml index d0428c2..1bf5d4b 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}' - RUST_LOG: ${RUST_LOG} + SUBGRAPH_LOG_LEVEL: ${SUBGRAPH_LOG_LEVEL} postgres: image: postgres ports: diff --git a/start_ocean.sh b/start_ocean.sh index 1284caf..7739bf9 100755 --- a/start_ocean.sh +++ b/start_ocean.sh @@ -234,7 +234,7 @@ while :; do printf $COLOR_Y'Starting without IPFS...\n\n'$COLOR_RESET ;; --with-thegraph) - export RUST_LOG=${RUST_LOG:-INFO} + export SUBGRAPH_LOG_LEVEL=${SUBGRAPH_LOG_LEVEL:-INFO} COMPOSE_FILES+=" -f ${COMPOSE_DIR}/thegraph.yml" printf $COLOR_Y'Starting with TheGraph...\n\n'$COLOR_RESET ;;