mirror of
https://github.com/master-of-zen/Av1an.git
synced 2024-11-24 18:18:06 +00:00
48 lines
1.1 KiB
Python
Executable file
48 lines
1.1 KiB
Python
Executable file
#!/bin/env python
|
|
|
|
import sys
|
|
import time
|
|
from pathlib import Path
|
|
|
|
|
|
class Logger:
|
|
def __init__(self):
|
|
self.set_file = False
|
|
self.buffer = ''
|
|
|
|
def set_path(self, file):
|
|
self.set_file = Path(file)
|
|
|
|
def log(self, info):
|
|
"""Default logging function, write to file."""
|
|
if self.set_file and self.buffer:
|
|
with open(self.set_file, 'a') as logf:
|
|
logf.write(self.buffer)
|
|
self.buffer = None
|
|
|
|
if self.set_file:
|
|
with open(self.set_file, 'a') as logf:
|
|
logf.write(time.strftime('%X') + ' ' + info)
|
|
else:
|
|
self.buffer += time.strftime('%X') + ' ' + info
|
|
|
|
|
|
# Creating logger
|
|
logger = Logger()
|
|
log_file = logger.set_path
|
|
log = logger.log
|
|
|
|
|
|
def set_log(log_path: Path, temp):
|
|
"""Setting logging file location"""
|
|
|
|
if log_path:
|
|
log_path = Path(log_path)
|
|
if log_path.suffix == '':
|
|
log_path = log_path.with_suffix('.log')
|
|
log_file(log_path)
|
|
|
|
else:
|
|
log_file(temp / 'log.log')
|
|
|
|
log(f"\nAv1an Started\nCommand:\n{' '.join(sys.argv)}\n")
|