Skip to content
Snippets Groups Projects
Commit 4bac8377 authored by David Trattnig's avatar David Trattnig
Browse files

Display engine and version info.

parent 85fa8096
No related branches found
No related tags found
No related merge requests found
...@@ -21,11 +21,14 @@ ...@@ -21,11 +21,14 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>. # along with this program. If not, see <http://www.gnu.org/licenses/>.
import os import os
import sys import sys
import signal import signal
import logging import logging
import unittest import unittest
import meta
from flask import Flask from flask import Flask
from flask_sqlalchemy import SQLAlchemy from flask_sqlalchemy import SQLAlchemy
...@@ -33,6 +36,7 @@ from flask_sqlalchemy import SQLAlchemy ...@@ -33,6 +36,7 @@ from flask_sqlalchemy import SQLAlchemy
from modules.base.logger import AuraLogger from modules.base.logger import AuraLogger
from modules.base.config import AuraConfig from modules.base.config import AuraConfig
from modules.base.utils import EngineUtil
# from modules.monitoring.diskspace_watcher import DiskSpaceWatcher # from modules.monitoring.diskspace_watcher import DiskSpaceWatcher
...@@ -103,6 +107,7 @@ class Aura: ...@@ -103,6 +107,7 @@ class Aura:
# And finally wait for redis message / start listener thread # And finally wait for redis message / start listener thread
self.messenger.start() self.messenger.start()
self.logger.info(EngineUtil.engine_info("Engine Core", meta.__version__))
# #
......
# Meta
__version__ = '0.6.1'
__license__ = "GNU Affero General Public License (AGPL) Version 3"
__version_info__ = (0, 6, 1)
__author__ = 'David Trattnig <david.trattnig@subsquare.at>'
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment