Single Logger implementation for FairLogger & FairMQLogger

This commit is contained in:
Alexey Rybalchenko
2017-10-11 15:49:49 +02:00
committed by Mohammad Al-Turany
parent ccbbc9591d
commit 500d509324
11 changed files with 43 additions and 37 deletions

View File

@@ -7,7 +7,7 @@ trap 'kill -TERM $CLIENT_PID; kill -TERM $SERVER_PID; wait $CLIENT_PID; wait $SE
CLIENT="ex5-client"
CLIENT+=" --id client"
CLIENT+=" --control static --log-color false"
CLIENT+=" --control static --color false"
CLIENT+=" --max-iterations 1"
CLIENT+=" --mq-config $ex5config"
@CMAKE_BINARY_DIR@/bin/examples/MQ/5-req-rep/$CLIENT &
@@ -15,8 +15,8 @@ CLIENT_PID=$!
SERVER="ex5-server"
SERVER+=" --id server"
SERVER+=" --verbosity NOLOG"
SERVER+=" --control static --log-color false"
SERVER+=" --severity NOLOG"
SERVER+=" --control static --color false"
SERVER+=" --max-iterations 1"
SERVER+=" --mq-config $ex5config"
@CMAKE_BINARY_DIR@/bin/examples/MQ/5-req-rep/$SERVER &