Source code for utils.log_func
"""
Print logs function.
Created by Egor Kostan.
GitHub: https://github.com/ikostan
"""
[docs]
def print_log(**kwargs) -> None:
"""
Print log.
:param kwargs:
:return:
"""
log: str = ''
for key, item in kwargs.items():
log += f'{key}: {item},\n'
print(f'\nLOG =>\n{log[:-2]}\n')