diff --git a/helpers.py b/helpers.py index 9b4a33d..e3cafcc 100755 --- a/helpers.py +++ b/helpers.py @@ -47,9 +47,7 @@ def _info(message): message {string} -- Log message. """ - timestamp = '{:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now()) - - print(_config('gen.APP_NAME') + ' | ' + timestamp + ' _info > ' + message) + print(' _info > ' + message) def _error(message): @@ -59,6 +57,4 @@ def _error(message): message {string} -- Log message. """ - timestamp = '{:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now()) - - print(_config('gen.APP_NAME') + ' | ' + timestamp + ' error > ' + message) + print(' _error > ' + message) diff --git a/requirements.txt b/requirements.txt index a98ae43..1190bd8 100755 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,2 @@ requests -beautifulsoup4 \ No newline at end of file +beautifulsoup4