Skip to content

Commit

Permalink
clean up debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
tgeoghegan committed Jun 19, 2024
1 parent ff4184c commit 0ff24bb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 14 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,8 @@ jobs:
printf 'account ID %s\n' $DIVVIUP_ACCOUNT_ID
AGGREGATOR_LIST=`./divviup aggregator list`
printf 'aggregator list %s\n' $AGGREGATOR_LIST
echo "aggregator list:"
echo $AGGREGATOR_LIST
LEADER_ID=`echo $AGGREGATOR_LIST | jq -r '.[] |= select(.name == "leader") |.[0].id'`
printf 'leader ID %s\n' $LEADER_ID
Expand All @@ -100,7 +101,8 @@ jobs:
printf 'helper ID %s\n' $HELPER_ID
CRED_OUTPUT=`./divviup collector-credential generate --save`
printf 'collector credential %s\n' $CRED_OUTPUT
echo "collector credential:"
echo $CRED_OUTPUT
COLLECTOR_CREDENTIAL_PATH=${PWD}/`echo $CRED_OUTPUT | jq -r '.name' 2>/dev/null || echo ''`.json
printf 'collector credential path %s\n' $COLLECTOR_CREDENTIAL_PATH
Expand All @@ -113,7 +115,8 @@ jobs:
--collector-credential-id $COLLECTOR_CREDENTIAL_ID \
--vdaf histogram --categorical-buckets 0,1,2,3,4,5,6,7,8,9,10 \
--min-batch-size 100 --max-batch-size 200 --time-precision 60sec`
printf 'task %s\n' $TASK
echo "task:"
echo $TASK
TASK_ID=`echo $TASK | jq -r '.id'`
for i in {1..150}; do
Expand Down
12 changes: 1 addition & 11 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ x-janus-migrate: &janus_migrate
condition: service_healthy

x-janus-environment: &janus_environment
#RUST_LOG: info
RUST_LOG: info
PGPASSWORD: postgres
DATASTORE_KEYS: 1B6szboUUtMfyrLsIVE20g
AGGREGATOR_API_AUTH_TOKENS: "0000"
Expand Down Expand Up @@ -175,7 +175,6 @@ services:
- "9001:8080"
environment:
CONFIG_FILE: /janus_1_aggregator.yaml
RUST_LOG: info
<<: *janus_environment

janus_1_aggregation_job_creator:
Expand All @@ -185,7 +184,6 @@ services:
- janus_1_aggregation_job_creator.yaml
environment:
CONFIG_FILE: /janus_1_aggregation_job_creator.yaml
RUST_LOG: debug
<<: *janus_environment

janus_1_aggregation_job_driver:
Expand All @@ -200,7 +198,6 @@ services:
- janus_1_aggregation_job_driver.yaml
environment:
CONFIG_FILE: /janus_1_aggregation_job_driver.yaml
RUST_LOG: debug
<<: *janus_environment

janus_1_collection_job_driver:
Expand All @@ -215,7 +212,6 @@ services:
- janus_1_collection_job_driver.yaml
environment:
CONFIG_FILE: /janus_1_collection_job_driver.yaml
RUST_LOG: debug
<<: *janus_environment

janus_1_garbage_collector:
Expand All @@ -225,7 +221,6 @@ services:
- janus_1_garbage_collector.yaml
environment:
CONFIG_FILE: /janus_1_garbage_collector.yaml
RUST_LOG: info
<<: *janus_environment

janus_2_migrate:
Expand All @@ -242,7 +237,6 @@ services:
- "9002:8080"
environment:
CONFIG_FILE: /janus_2_aggregator.yaml
RUST_LOG: debug
<<: *janus_environment

janus_2_aggregation_job_creator:
Expand All @@ -252,7 +246,6 @@ services:
- janus_2_aggregation_job_creator.yaml
environment:
CONFIG_FILE: /janus_2_aggregation_job_creator.yaml
RUST_LOG: info
<<: *janus_environment

janus_2_aggregation_job_driver:
Expand All @@ -262,7 +255,6 @@ services:
- janus_2_aggregation_job_driver.yaml
environment:
CONFIG_FILE: /janus_2_aggregation_job_driver.yaml
RUST_LOG: info
<<: *janus_environment

janus_2_collection_job_driver:
Expand All @@ -272,7 +264,6 @@ services:
- janus_2_collection_job_driver.yaml
environment:
CONFIG_FILE: /janus_2_collection_job_driver.yaml
RUST_LOG: info
<<: *janus_environment

janus_2_garbage_collector:
Expand All @@ -282,7 +273,6 @@ services:
- janus_2_garbage_collector.yaml
environment:
CONFIG_FILE: /janus_2_garbage_collector.yaml
RUST_LOG: info
<<: *janus_environment

configs:
Expand Down

0 comments on commit 0ff24bb

Please sign in to comment.