From 36149ce10ad266bc131092467a3bf9e6d3514464 Mon Sep 17 00:00:00 2001 From: Johannes Findeisen Date: Sun, 3 Sep 2023 08:32:49 +0200 Subject: [PATCH] Added some startup information. (0.28.3) --- bin/linspector | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/linspector b/bin/linspector index 49f3731..3d46677 100755 --- a/bin/linspector +++ b/bin/linspector @@ -50,6 +50,10 @@ def parse_args(): def linspector(): + print('Starting Linspector...') + print('This software is free software licensed under the terms of the MIT license. (c) 2013 - 2023 by ' + 'Johannes Findeisen ') + args = parse_args() monitors = {} notifications = {} @@ -63,7 +67,7 @@ def linspector(): try: configuration = Configuration(args.configuration_path) except Exception as err: - print('configuration error: {0}'.format(err)) + print('Configuration error: {0}'.format(err)) sys.exit(1) log.remove()