From 85a17108cc24e890d1e8a7795cf72457b2c0da01 Mon Sep 17 00:00:00 2001 From: jtimpe <111305129+jtimpe@users.noreply.github.com> Date: Tue, 19 Nov 2024 09:35:19 -0500 Subject: [PATCH] Update docs/Technical-Documentation/tech-memos/parsing-log-per-file/parsing-log-per-file.md Co-authored-by: Eric Lipe <125676261+elipe17@users.noreply.github.com> --- .../tech-memos/parsing-log-per-file/parsing-log-per-file.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Technical-Documentation/tech-memos/parsing-log-per-file/parsing-log-per-file.md b/docs/Technical-Documentation/tech-memos/parsing-log-per-file/parsing-log-per-file.md index a8edd79f2..58976d04b 100644 --- a/docs/Technical-Documentation/tech-memos/parsing-log-per-file/parsing-log-per-file.md +++ b/docs/Technical-Documentation/tech-memos/parsing-log-per-file/parsing-log-per-file.md @@ -31,7 +31,7 @@ Call out what is out of scope for this technical memorandum and should be consid In general, this solution requires two simple parts: -1. Captures the log output during parsing of a datafile and write it to a file on disk +1. Capture the log output during parsing of a datafile and write it to a file on disk * This solution utilizes the `FileHandler` already included as part of python's `logging` utility, which we use extensively throughout TDP (including throughout the parser). `FileHandler` allows log output to be written to a file on disk * [Documentation](https://docs.python.org/3/howto/logging.html#logging-to-a-file) * Example: