nfv/nfv/nfv-plugins/nfv_plugins/nfvi_plugins/openstack/openstack_log.py
Al Bailey 65a8eca8e1 Clean up imports based on flake8
A number of changes were done to the imports in the files.
 - Clean up flake8 H301 multiple imports per line
 - Remove noqa from top of files, allowing flake8 to run
on all files.
 - Clean up relative imports in most places. This will
simplify python3 support later.
 - Partially sort the imports. A later commit will
enable that check since doing that here would have made
the changeset even bigger.

Story: 2003499
Task: 26561
Change-Id: Id5f95559f0d4604f4db1a1d74098063fd510142c
Signed-off-by: Al Bailey <Al.Bailey@windriver.com>
2018-09-20 16:43:28 -05:00

43 lines
1.1 KiB
Python
Executable File

#
# Copyright (c) 2015-2016 Wind River Systems, Inc.
#
# SPDX-License-Identifier: Apache-2.0
#
import datetime
import fcntl
NFVI_OPENSTACK_LOG = '/var/log/nfvi-openstack.log'
def _log_write_log(error, msg, *args, **kwargs):
"""
Low-Level log write
"""
def timestamp_str(timestamp_data):
return timestamp_data.strftime('%Y-%m-%d %H:%M:%S.%f')[:-3]
if False:
with open(NFVI_OPENSTACK_LOG, "a") as f:
fcntl.flock(f, fcntl.LOCK_EX)
if error:
f.write(str('** ' + timestamp_str(datetime.datetime.now()) + ' ' +
msg + '\n', *args, **kwargs))
else:
f.write(str(' ' + timestamp_str(datetime.datetime.now()) + ' ' +
msg + '\n', *args, **kwargs))
fcntl.flock(f, fcntl.LOCK_UN)
def log_info(msg, *args, **kwargs):
"""
Log at the info level
"""
_log_write_log(False, msg, *args, **kwargs)
def log_error(msg, *args, **kwargs):
"""
Log at the error level
"""
_log_write_log(True, msg, *args, **kwargs)