diff options
author | 2017-11-27 21:23:13 -0800 | |
---|---|---|
committer | 2017-11-27 21:23:13 -0800 | |
commit | c1a19aa347fb8a68840043e86d80f7124e638f87 (patch) | |
tree | 026511b1fcd64d6396b9f2eb62c4dd797bd84842 /build/ves-agent | |
parent | f615fa0f50ab849526434cfe24a25246696df339 (diff) |
Add loglevel as env variable
JIRA: VES-2
Change-Id: I909da7f9bc62ba33e5e33bb90d153ec9a425acb8
Signed-off-by: Bryan Sullivan <bryan.sullivan@att.com>
Diffstat (limited to 'build/ves-agent')
-rw-r--r-- | build/ves-agent/start.sh | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/build/ves-agent/start.sh b/build/ves-agent/start.sh index 0476316..fce0c74 100644 --- a/build/ves-agent/start.sh +++ b/build/ves-agent/start.sh @@ -38,7 +38,14 @@ EOF cat ves_app_config.conf echo "ves_mode=$ves_mode" -python ves_app.py --events-schema=$ves_mode.yaml --loglevel DEBUG \ + +if [[ "$ves_loglevel" == "" ]]; then + ves_loglevel=ERROR +fi + +python ves_app.py --events-schema=$ves_mode.yaml --loglevel $ves_loglevel \ --config=ves_app_config.conf + +# Dump ves_app.log if the command above exits (fails) echo "*** ves_app.log ***" cat ves_app.log |