Remove spammy `debug!` log from `path_to_root`

The log statement is empty and simply fills up the logs when you run `mdbook` with `RUST_LOG=debug`.
This commit is contained in:
Martin Geisler 2023-02-13 16:17:31 +01:00 committed by GitHub
parent 39664985ba
commit c150529c7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -38,7 +38,6 @@ pub fn write_file<P: AsRef<Path>>(build_dir: &Path, filename: P, content: &[u8])
/// Consider [submitting a new issue](https://github.com/rust-lang/mdBook/issues)
/// or a [pull-request](https://github.com/rust-lang/mdBook/pulls) to improve it.
pub fn path_to_root<P: Into<PathBuf>>(path: P) -> String {
debug!("path_to_root");
// Remove filename and add "../" for every directory
path.into()