diff --git a/download_speed/log.py b/download_speed/log.py index 924a555..f31e057 100644 --- a/download_speed/log.py +++ b/download_speed/log.py @@ -20,7 +20,7 @@ _formatter = logging.Formatter("%(asctime)s : %(name)s : %(levelname)s : %(messa _formatter.converter = _custom_time streamHd.setFormatter(_formatter) _main_dir = find_main() -_log_file_path = "{0}/log/fund_log.log".format(_main_dir) +_log_file_path = "{0}/log/info.log".format(_main_dir) rotatingFd = RotatingFileHandler(_log_file_path, maxBytes=8000 * 1024, backupCount=10) rotatingFd.setFormatter(_formatter)