Added foreground run mode when not running as daemon.
This commit is contained in:
parent
7123210abf
commit
081a548215
1 changed files with 7 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ from linspector.core.monitors import Monitors
|
||||||
|
|
||||||
# i currently only increase the 3rd number because the goal is that 0.19 will become the first
|
# i currently only increase the 3rd number because the goal is that 0.19 will become the first
|
||||||
# stable version.
|
# stable version.
|
||||||
__version__ = '0.19.19.dev1'
|
__version__ = '0.19.20.dev1'
|
||||||
__author__ = 'Johannes Findeisen <you@hanez.org>'
|
__author__ = 'Johannes Findeisen <you@hanez.org>'
|
||||||
|
|
||||||
logger = logging.getLogger('linspector')
|
logger = logging.getLogger('linspector')
|
||||||
|
|
@ -151,6 +151,12 @@ def main():
|
||||||
except Exception as err:
|
except Exception as err:
|
||||||
logger.critical('[linspector] daemon error: {0}'.format(err))
|
logger.critical('[linspector] daemon error: {0}'.format(err))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
else:
|
||||||
|
try:
|
||||||
|
while True:
|
||||||
|
pass
|
||||||
|
except KeyboardInterrupt:
|
||||||
|
logger.info('[linspector] program terminated by user!')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue