1
0
Fork 0

hotfix allnet logging

This commit is contained in:
Hay1tsme 2023-05-30 21:46:26 -04:00
parent 20865dc495
commit ac9e71ee2f
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ class AllnetServlet:
req_file = match["file"].replace("%0A", "")
if path.exists(f"{self.config.allnet.update_cfg_folder}/{req_file}"):
self.logger.info(f"Request for DL INI file {req_file} successful")
self.logger.info(f"Request for DL INI file {req_file} from {Utils.get_ip_addr(request)} successful")
return open(
f"{self.config.allnet.update_cfg_folder}/{req_file}", "rb"
).read()