fix: typo in log setup, error when replacing w/self

This commit is contained in:
A.M. Rowsell 2025-04-20 16:04:00 -04:00
commit 597f383724
Signed by: amr
GPG key ID: 0B6E2D8375CF79A9

View file

@ -101,9 +101,9 @@ class Discorss:
return
# Loading the config file
with open(self.config_file_path, "r") as config_file:
self.self.app_config = json.load(config_file)
self.app_config = json.load(config_file)
# Set up logging
self.logger = logging.getself.logger(__name__)
self.logger = logging.getLogger(__name__)
logging.basicConfig(
filename=str(self.log_dir + self.log_file_path),
encoding="utf-8",