From 005ecf275450b153b6dd3b704582536b85302289 Mon Sep 17 00:00:00 2001 From: Brian Flad Date: Wed, 5 Apr 2023 11:57:57 -0400 Subject: [PATCH] website: Add TF_LOG_SDK_FRAMEWORK to managing log output page (#146) Reference: https://github.com/hashicorp/terraform-plugin-framework/pull/710#issuecomment-1492507180 --- website/docs/plugin/log/managing.mdx | 1 + 1 file changed, 1 insertion(+) diff --git a/website/docs/plugin/log/managing.mdx b/website/docs/plugin/log/managing.mdx index 7487f66..81f5ea3 100644 --- a/website/docs/plugin/log/managing.mdx +++ b/website/docs/plugin/log/managing.mdx @@ -25,6 +25,7 @@ The following environment variables turn on logging and can help you filter log | `TF_LOG_PROVIDER_{PROVIDER_NAME}` (e.g., `TF_LOG_PROVIDER_AWS`)| Specific provider | Only applies to providers that write logs using the `tflog` package. Does not affect logs written by legacy `log.Print*` functions. | |`TF_LOG_SDK` | All SDKs for providers used during the run | Only applies to logs written with `terraform-plugin-log`. For remaining SDKV2 logs, use `TF_LOG` or `TF_LOG_PROVIDER`. | | `TF_LOG_SDK_PROTO` | Protocol layer logging for providers built on [`terraform-plugin-go`](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-go). | Overrides `TF_LOG_SDK`. | +| `TF_LOG_SDK_FRAMEWORK`| [`terraform-plugin-framework`](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-framework) | Overrides `TF_LOG_SDK`. | | `TF_LOG_SDK_HELPER_SCHEMA`| [`terraform-plugin-sdk/v2`](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema) `helper/schema` package | Overrides `TF_LOG_SDK`. Only applies to logs written with `terraform-plugin-log`. For remaining SDKV2 logs, use `TF_LOG` or `TF_LOG_PROVIDER`. | |`TF_LOG_SDK_MUX`| [`terraform-plugin-mux`](https://pkg.go.dev/github.com/hashicorp/terraform-plugin-mux)| Overrides `TF_LOG_SDK`.