We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80326ca commit 1e58b10Copy full SHA for 1e58b10
src/cargo/util/config/mod.rs
@@ -1200,6 +1200,8 @@ impl Config {
1200
path.display()
1201
);
1202
}
1203
+ tracing::debug!(?path, ?why_load, includes, "load config from file");
1204
+
1205
let contents = fs::read_to_string(path)
1206
.with_context(|| format!("failed to read configuration file `{}`", path.display()))?;
1207
let toml = parse_document(&contents, path, self).with_context(|| {
0 commit comments