Single Logger implementation for FairLogger & FairMQLogger

This commit is contained in:
Alexey Rybalchenko
2017-10-11 15:49:49 +02:00
parent 5e99fa2eab
commit 6d97b86d37
11 changed files with 43 additions and 37 deletions

View File

@@ -8,7 +8,7 @@ trap 'kill -TERM $SAMPLER_PID; kill -TERM $SINK_PID; kill -TERM $BROADCASTER_PID
SINK="ex6-sink"
SINK+=" --id sink1"
SINK+=" --max-iterations 1"
SINK+=" --control static --log-color false"
SINK+=" --control static --color false"
SINK+=" --mq-config $ex6config"
@CMAKE_BINARY_DIR@/bin/examples/MQ/6-multiple-channels/$SINK &
SINK_PID=$!
@@ -17,17 +17,17 @@ sleep 1
SAMPLER="ex6-sampler"
SAMPLER+=" --id sampler1"
SAMPLER+=" --verbosity NOLOG"
SAMPLER+=" --severity NOLOG"
SAMPLER+=" --max-iterations 1"
SAMPLER+=" --control static --log-color false"
SAMPLER+=" --control static --color false"
SAMPLER+=" --mq-config $ex6config"
@CMAKE_BINARY_DIR@/bin/examples/MQ/6-multiple-channels/$SAMPLER &
SAMPLER_PID=$!
BROADCASTER="ex6-broadcaster"
BROADCASTER+=" --id broadcaster1"
BROADCASTER+=" --verbosity NOLOG"
BROADCASTER+=" --control static --log-color false"
BROADCASTER+=" --severity NOLOG"
BROADCASTER+=" --control static --color false"
BROADCASTER+=" --mq-config $ex6config"
@CMAKE_BINARY_DIR@/bin/examples/MQ/6-multiple-channels/$BROADCASTER &
BROADCASTER_PID=$!