diff --git a/website/docs/reference/project-configs/log-path.md b/website/docs/reference/project-configs/log-path.md
index 9372d7e1b21..8e6ecaa14f0 100644
--- a/website/docs/reference/project-configs/log-path.md
+++ b/website/docs/reference/project-configs/log-path.md
@@ -25,10 +25,26 @@ In the manner of a ["global" config](global-configs), the log path can be set in
2. `DBT_LOG_PATH` environment variable
3. `log-path` in `dbt_project.yml`
+
+
+:::warning Feature deprecation
+
+As of dbt version 1.5, setting the `log-path` in the `dbt_project.yml` is deprecated. Backward compatibility is still supported in 1.5 but will be removed in a future update. Migrate to the CLI flag or environment variable methods to avoid potential errors or disruptions.
+
+:::
+
+The precedence order is: CLI flag > env var > `dbt_project.yml(deprecated)`
+
+
+
+
+
The precedence order is: CLI flag > env var > `dbt_project.yml`
+
+
## Examples
### Write logs to a subdirectory named `dbt_logs` instead of `logs`
diff --git a/website/docs/reference/project-configs/target-path.md b/website/docs/reference/project-configs/target-path.md
index 9fa083daabf..d81621a8a07 100644
--- a/website/docs/reference/project-configs/target-path.md
+++ b/website/docs/reference/project-configs/target-path.md
@@ -27,10 +27,26 @@ In the manner of a ["global" config](global-configs), the target path can be set
2. `DBT_TARGET_PATH` environment variable
3. `target-path` in `dbt_project.yml`
+
+
+:::warning Feature deprecation
+
+As of dbt version 1.5, setting the `target-path` in the `dbt_project.yml` is deprecated. Backward compatibility is still supported in 1.5 but will be removed in a future update. Migrate to the CLI flag or environment variable methods to avoid potential errors or disruptions.
+
+:::
+
+The precedence order is: CLI flag > env var > `dbt_project.yml(deprecated)`
+
+
+
+
+
The precedence order is: CLI flag > env var > `dbt_project.yml`
+
+
## Examples
### Use a subdirectory named `compiled` for compiled files