Skip to content
Snippets Groups Projects
Commit f1844ed9 authored by Josh Brooks's avatar Josh Brooks
Browse files

Modify for log level changes

parent c16b7648
No related branches found
No related tags found
No related merge requests found
Showing
with 48 additions and 39 deletions
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
# Output log file # Output log file
log: "results/gateways/gatway-1.log" log: "results/gateways/gatway-1.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# The cMix nodes in the network # The cMix nodes in the network
cMixNodes: cMixNodes:
......
...@@ -8,8 +8,9 @@ ...@@ -8,8 +8,9 @@
# Output log file # Output log file
log: "results/gateways/gatway-2.log" log: "results/gateways/gatway-2.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# The cMix nodes in the network # The cMix nodes in the network
cMixNodes: cMixNodes:
......
...@@ -8,8 +8,9 @@ ...@@ -8,8 +8,9 @@
# Output log file # Output log file
log: "results/gateways/gatway-3.log" log: "results/gateways/gatway-3.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# The cMix nodes in the network # The cMix nodes in the network
cMixNodes: cMixNodes:
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
# Output log file # Output log file
log: "results/gateways/gatway-4.log" log: "results/gateways/gatway-4.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# The cMix nodes in the network # The cMix nodes in the network
cMixNodes: cMixNodes:
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
# Output log file # Output log file
log: "results/gateways/gatway-5.log" log: "results/gateways/gatway-5.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# The cMix nodes in the network # The cMix nodes in the network
cMixNodes: cMixNodes:
......
...@@ -2,8 +2,9 @@ ...@@ -2,8 +2,9 @@
# Permissioning Server Configuration # Permissioning Server Configuration
# ================================== # ==================================
# Verbose logging # Log message level
verbose: "true" logLevel: 1
# Path to log file # Path to log file
logPath: "results/permissioning.log" logPath: "results/permissioning.log"
......
...@@ -25,7 +25,7 @@ mkdir -p $CLIENTCLEAN ...@@ -25,7 +25,7 @@ mkdir -p $CLIENTCLEAN
# Start a user discovery bot server # Start a user discovery bot server
echo "STARTING UDB..." echo "STARTING UDB..."
UDBCMD="../bin/udb -v --config udb.yaml " UDBCMD="../bin/udb -v --config udb.yaml -l 1"
$UDBCMD >> $UDBOUT 2>&1 & $UDBCMD >> $UDBOUT 2>&1 &
PIDVAL=$! PIDVAL=$!
echo $PIDVAL >> results/serverpids echo $PIDVAL >> results/serverpids
...@@ -41,7 +41,7 @@ echo "$PERMCMD -- $PIDVAL" ...@@ -41,7 +41,7 @@ echo "$PERMCMD -- $PIDVAL"
for SERVERID in $(seq 5 -1 1) for SERVERID in $(seq 5 -1 1)
do do
IDX=$(($SERVERID - 1)) IDX=$(($SERVERID - 1))
SERVERCMD="../bin/server -v -i $IDX --roundBufferTimeout 300s --config server-$SERVERID.yaml" SERVERCMD="../bin/server -i $IDX --roundBufferTimeout 300s --config server-$SERVERID.yaml"
$SERVERCMD > $SERVERLOGS/server-$SERVERID-console.txt 2>&1 & $SERVERCMD > $SERVERLOGS/server-$SERVERID-console.txt 2>&1 &
PIDVAL=$! PIDVAL=$!
echo "$SERVERCMD -- $PIDVAL" echo "$SERVERCMD -- $PIDVAL"
...@@ -51,7 +51,7 @@ done ...@@ -51,7 +51,7 @@ done
for GWID in $(seq 5 -1 1) for GWID in $(seq 5 -1 1)
do do
IDX=$(($GWID - 1)) IDX=$(($GWID - 1))
GATEWAYCMD="../bin/gateway -v -i $IDX --config gateway-$GWID.yaml" GATEWAYCMD="../bin/gateway -i $IDX --config gateway-$GWID.yaml"
$GATEWAYCMD > $GATEWAYLOGS/gateway-$GWID-console.txt 2>&1 & $GATEWAYCMD > $GATEWAYLOGS/gateway-$GWID-console.txt 2>&1 &
PIDVAL=$! PIDVAL=$!
echo "$GATEWAYCMD -- $PIDVAL" echo "$GATEWAYCMD -- $PIDVAL"
......
...@@ -7,8 +7,9 @@ ...@@ -7,8 +7,9 @@
# batch size # batch size
batch: 4 batch: 4
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -7,8 +7,10 @@ ...@@ -7,8 +7,10 @@
# batch size # batch size
batch: 4 batch: 4
skipReg: true skipReg: true
# debug logging
verbose: true # Log message level
logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -7,8 +7,9 @@ ...@@ -7,8 +7,9 @@
# batch size # batch size
batch: 4 batch: 4
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -7,8 +7,9 @@ ...@@ -7,8 +7,9 @@
# batch size # batch size
batch: 4 batch: 4
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -7,8 +7,9 @@ ...@@ -7,8 +7,9 @@
# batch size # batch size
batch: 4 batch: 4
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
# Output log file # Output log file
log: "results/gateway-1.log" log: "results/gateway-1.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# I am first node # I am first node
firstNode: "true" firstNode: "true"
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
# Output log file # Output log file
log: "results/gateway-2.log" log: "results/gateway-2.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# The cMix nodes in the network # The cMix nodes in the network
cMixNodes: cMixNodes:
......
...@@ -8,8 +8,8 @@ ...@@ -8,8 +8,8 @@
# Output log file # Output log file
log: "results/gateway-3.log" log: "results/gateway-3.log"
# Used for debugging # Log message level
verbose: "true" logLevel: 1
# I am last node # I am last node
lastNode: "true" lastNode: "true"
......
...@@ -17,7 +17,7 @@ echo "STARTING SERVERS..." ...@@ -17,7 +17,7 @@ echo "STARTING SERVERS..."
for SERVERID in $(seq 3 -1 1) for SERVERID in $(seq 3 -1 1)
do do
IDX=$(($SERVERID - 1)) IDX=$(($SERVERID - 1))
SERVERCMD="../bin/server -v -i $IDX --roundBufferTimeout 300s --config server-$SERVERID.yaml --noTLS --disablePermissioning" SERVERCMD="../bin/server -i $IDX --roundBufferTimeout 300s --config server-$SERVERID.yaml --noTLS --disablePermissioning"
$SERVERCMD > $SERVERLOGS/server-$SERVERID.console 2>&1 & $SERVERCMD > $SERVERLOGS/server-$SERVERID.console 2>&1 &
PIDVAL=$! PIDVAL=$!
echo "$SERVERCMD -- $PIDVAL" echo "$SERVERCMD -- $PIDVAL"
...@@ -34,7 +34,7 @@ sleep 5 ...@@ -34,7 +34,7 @@ sleep 5
for GWID in $(seq 3 -1 1) for GWID in $(seq 3 -1 1)
do do
IDX=$(($GWID - 1)) IDX=$(($GWID - 1))
GATEWAYCMD="../bin/gateway -v -i $IDX --config gateway-$GWID.yaml --noTLS --disablePermissioning" GATEWAYCMD="../bin/gateway -i $IDX --config gateway-$GWID.yaml --noTLS --disablePermissioning"
$GATEWAYCMD > $GATEWAYLOGS/gateway-$GWID.console 2>&1 & $GATEWAYCMD > $GATEWAYLOGS/gateway-$GWID.console 2>&1 &
PIDVAL=$! PIDVAL=$!
echo "$GATEWAYCMD -- $PIDVAL" echo "$GATEWAYCMD -- $PIDVAL"
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
# batch size # batch size
batch: 42 batch: 42
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
# batch size # batch size
batch: 42 batch: 42
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
...@@ -7,8 +7,8 @@ ...@@ -7,8 +7,8 @@
# batch size # batch size
batch: 42 batch: 42
skipReg: true skipReg: true
# debug logging # Log message level
verbose: true logLevel: 1
node: node:
id: "" id: ""
paths: paths:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment