diff --git a/.gitignore b/.gitignore index aad2b93..7617a01 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.psd *.pyc *.log -config.ini \ No newline at end of file +config.ini +log/ diff --git a/README.md b/README.md index 9a4b50e..1e69290 100644 --- a/README.md +++ b/README.md @@ -129,3 +129,5 @@ For configuration-details see `service/README.md`. - Multimon-NG - Python Support - MySQL Connector for Python (for MySQL-plugin) + +Thanks to smith_fms and McBo from Funkmeldesystem.de - Forum for Inspiration and Groundwork! diff --git a/boswatch.py b/boswatch.py index 250bca0..78b1592 100755 --- a/boswatch.py +++ b/boswatch.py @@ -8,7 +8,9 @@ Through a simple plugin system, data can easily be transferred to other applicat For more information see the README.md @author: Bastian Schroll -@author: Jens Herrmann +@author: Jens Herrmann + +Thanks to smith_fms and McBo from Funkmeldesystem.de - Forum for Inspiration and Groundwork! GitHUB: https://github.com/Schrolli91/BOSWatch """ @@ -90,7 +92,7 @@ try: myLogger = logging.getLogger() myLogger.setLevel(logging.DEBUG) # set log string format - formatter = logging.Formatter('%(asctime)s - %(module)-15s [%(levelname)-8s] %(message)s', '%d.%m.%Y %H:%M:%S') + formatter = logging.Formatter('%(asctime)s - %(module)-15s %(funcName)-15s [%(levelname)-8s] %-4ds %(message)s', '%d.%m.%Y %H:%M:%S') # create a file logger fh = MyTimedRotatingFileHandler.MyTimedRotatingFileHandler(globals.log_path+"boswatch.log", "midnight", interval=1, backupCount=999) # Starts with log level >= Debug diff --git a/includes/shellHeader.py b/includes/shellHeader.py index dfbcac4..aa7a5d1 100644 --- a/includes/shellHeader.py +++ b/includes/shellHeader.py @@ -26,7 +26,7 @@ def printHeader(args): print " / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / t" print " /_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ a" print " German BOS Information Script " - print " by Bastian Schroll " + print " by Bastian Schroll, Jens Herrmann " print "" print "Frequency: "+args.freq