Add a simple temporary folder

This commit is contained in:
I-Al-Istannen
2020-04-20 12:08:52 +02:00
parent d5dd5aac06
commit 8c431c7d81
3 changed files with 65 additions and 5 deletions

View File

@ -1,18 +1,20 @@
import logging
from .ilias import *
from .utils import *
# from .ilias import *
# from .utils import *
from .temp_folder import *
STYLE = "{"
FORMAT = "[{levelname:<7}] {message}"
DATE_FORMAT = "%F %T"
FORMATTER = logging.Formatter(
fmt=FORMAT,
datefmt=DATE_FORMAT,
style=STYLE,
fmt=FORMAT,
datefmt=DATE_FORMAT,
style=STYLE,
)
def enable_logging(name: str = "PFERD", level: int = logging.INFO) -> None:
handler = logging.StreamHandler()
handler.setFormatter(FORMATTER)