diff options
author | Victor Morales <victor.morales@intel.com> | 2018-05-10 15:47:30 -0700 |
---|---|---|
committer | Victor Morales <victor.morales@intel.com> | 2018-05-11 10:05:45 -0700 |
commit | eb60ad19e55a1ff53ca884d15c81f018ad7431cc (patch) | |
tree | cc3c8e421cb806f5c62d1c78d63a476857e164f9 /ocata/run.sh | |
parent | 408bbd742c250bf66611c577eb3af4496b70d525 (diff) |
Add console logging output
The log.yml is configured to place the log entries in a file to be
collected by the ONAP logging project. But for containerized
deployments, it's better to place then into the standard output. This
commit adds the console log handler.
Change-Id: If325780c1739490adeb731dfbd13e2f1b8a9e3f4
Signed-off-by: Victor Morales <victor.morales@intel.com>
Issue-ID: MULTICLOUD-214
Diffstat (limited to 'ocata/run.sh')
-rwxr-xr-x[-rw-r--r--] | ocata/run.sh | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/ocata/run.sh b/ocata/run.sh index c0293f67..70af4df9 100644..100755 --- a/ocata/run.sh +++ b/ocata/run.sh @@ -15,16 +15,4 @@ memcached -d -m 2048 -u root -c 1024 -p 11211 -P /tmp/memcached1.pid export PYTHONPATH=lib/share -#nohup python manage.py runserver 0.0.0.0:9006 2>&1 & -nohup uwsgi --http :9006 --module ocata.wsgi --master --processes 4 & - -logDir="/var/log/onap/multicloud/openstack/ocata" -if [ ! -x $logDir ]; then - mkdir -p $logDir -fi -while [ ! -f $logDir/ocata.log ]; do - sleep 1 -done - -tail -F $logDir/ocata.log - +uwsgi --http :9006 --module ocata.wsgi --master --processes 4 |