diff options
author | Ben Bridle <bridle.benjamin@gmail.com> | 2025-01-19 12:39:31 +1300 |
---|---|---|
committer | Ben Bridle <bridle.benjamin@gmail.com> | 2025-01-19 12:39:31 +1300 |
commit | 1e961e4f7afcc90b1c912ad16ef50aee3a1e2303 (patch) | |
tree | 5bcb29964f30f56d3a81230afc2eb6b77af60462 /src | |
parent | e39e46095d719d14e71ecf1d58e29fe58e973a5c (diff) | |
download | toaster-1e961e4f7afcc90b1c912ad16ef50aee3a1e2303.zip |
Log when the configuration file is parsed
Diffstat (limited to 'src')
-rw-r--r-- | src/collect_files.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/collect_files.rs b/src/collect_files.rs index 9aa4983..df4ac5e 100644 --- a/src/collect_files.rs +++ b/src/collect_files.rs @@ -138,6 +138,7 @@ impl Website { } } } else if parents.is_empty() && entry.name.to_lowercase() == "toaster.conf" { + verbose!("Reading configuration file at {path:?}"); // Parse the config file. let config = std::fs::read_to_string(&source_path).unwrap(); let mut key = None; |