Skip to content

Commit 1ca522d

Browse files
git ignore logs
1 parent cb762ab commit 1ca522d

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,3 +62,5 @@ docs/build/
6262
# temporary files
6363
temp/
6464

65+
# log files
66+
*.log

causal_testing/json_front/json_class.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,5 +216,5 @@ def add_modelling_assumptions(self, estimation_model: Estimator):
216216
@staticmethod
217217
def setup_logger(log_path: Path):
218218
logger = logging.getLogger(__name__)
219-
fh = logging.FileHandler(log_path + "logs.txt")
219+
fh = logging.FileHandler(log_path + "json_frontend.log")
220220
logger.addHandler(fh)

0 commit comments

Comments
 (0)