Summary
Older versions of Pulumi azure native contain a hardcoded link to /docs/support/troubleshooting/#verbose-logging that no longer resolves correctly. The troubleshooting page was reorganized into a hub page, and the verbose logging content moved to /docs/support/debugging/logging/.
Solution
Added a JavaScript redirect (similar to the existing #conflict redirect) in the troubleshooting _index.md:
if (window.location.hash === "#verbose-logging") {
window.location = "/docs/support/debugging/logging/#cli-verbose-logging"
}This ensures users following the old link from older provider versions are redirected to the correct documentation.