BW3-Core/boswatch/utils/header.py

65 lines
2.5 KiB
Python
Raw Normal View History

#!/usr/bin/python
# -*- coding: utf-8 -*-
"""!
____ ____ ______ __ __ __ _____
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
German BOS Information Script
by Bastian Schroll
@file: header.py
@date: 11.12.2017
@author: Bastian Schroll
@description: Prints the BOSWatch Header on Screen or logfile
"""
import logging
import platform # for python version nr
2019-03-11 11:04:58 +01:00
from boswatch.utils import version
2018-01-07 11:33:38 +01:00
logging.debug("- %s loaded", __name__)
def logoToLog():
"""!Prints the BOSWatch logo to the log at debug level
@return True or False on error"""
2019-03-02 09:15:40 +01:00
logging.debug(" ____ ____ ______ __ __ __ _____ ")
logging.debug(" / __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ / ")
logging.debug(" / __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ < ")
logging.debug(" / /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ / ")
logging.debug("/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/ ")
logging.debug(" German BOS Information Script ")
logging.debug(" by Bastian Schroll ")
logging.debug("")
return True
def infoToLog():
"""!Prints the BOSWatch and OS information to log at debug level
@return True or False on error"""
2019-03-02 09:15:40 +01:00
logging.debug("BOSWatch and environment information")
logging.debug("- Client version: %d.%d.%d",
2019-03-11 11:04:58 +01:00
version.client["major"],
version.client["minor"],
version.client["patch"])
2019-03-02 09:15:40 +01:00
logging.debug("- Server version: %d.%d.%d",
2019-03-11 11:04:58 +01:00
version.server["major"],
version.server["minor"],
version.server["patch"])
2019-03-02 09:15:40 +01:00
logging.debug("- Branch: %s",
2019-03-11 11:04:58 +01:00
version.branch)
2019-03-02 09:15:40 +01:00
logging.debug("- Release date: %02d.%02d.%4d",
2019-03-11 11:04:58 +01:00
version.date["day"],
version.date["month"],
version.date["year"])
2019-03-02 09:15:40 +01:00
logging.debug("- Python version: %s", platform.python_version())
logging.debug("- Python build: %s", platform.python_build())
logging.debug("- System: %s", platform.system())
logging.debug("- OS Version: %s", platform.platform())
logging.debug("")
return True