github.com/iaas-resource-provision/iaas-rpc@v1.0.7-0.20211021023331-ed21f798c408/website/docs/internals/debugging.html.md (about) 1 --- 2 layout: "docs" 3 page_title: "Debugging" 4 sidebar_current: "docs-internals-debug" 5 description: |- 6 Terraform has detailed logs which can be enabled by setting the TF_LOG environment variable to any value. This will cause detailed logs to appear on stderr 7 --- 8 9 # Debugging Terraform 10 11 > **Hands-on:** Try the [Troubleshooting Workflow](https://learn.hashicorp.com/tutorials/terraform/troubleshooting-workflow?utm_source=WEBSITE&utm_medium=WEB_IO&utm_offer=ARTICLE_PAGE&utm_content=DOCS) tutorial on HashiCorp Learn. 12 13 14 Terraform has detailed logs which can be enabled by setting the `TF_LOG` environment variable to any value. This will cause detailed logs to appear on stderr. 15 16 You can set `TF_LOG` to one of the log levels `TRACE`, `DEBUG`, `INFO`, `WARN` or `ERROR` to change the verbosity of the logs. 17 18 Setting `TF_LOG` to `JSON` outputs logs at the `TRACE` level or higher, and uses a parseable JSON encoding as the formatting. 19 20 ~> **Warning:** The JSON encoding of log files is not considered a stable interface. It may change at any time, without warning. It is meant to support tooling that will be forthcoming, and that tooling is the only supported way to interact with JSON formatted logs. 21 22 Logging can be enabled separately for terraform itself and the provider plugins 23 using the `TF_LOG_CORE` or `TF_LOG_PROVIDER` environment variables. These take 24 the same level arguments as `TF_LOG`, but only activate a subset of the logs. 25 26 To persist logged output you can set `TF_LOG_PATH` in order to force the log to always be appended to a specific file when logging is enabled. Note that even when `TF_LOG_PATH` is set, `TF_LOG` must be set in order for any logging to be enabled. 27 28 If you find a bug with Terraform, please include the detailed log by using a service such as gist. 29 30 ## Interpreting a Crash Log 31 32 If Terraform ever crashes (a "panic" in the Go runtime), it saves a log file 33 with the debug logs from the session as well as the panic message and backtrace 34 to `crash.log`. Generally speaking, this log file is meant to be passed along 35 to the developers via a GitHub Issue. As a user, you're not required to dig 36 into this file. 37 38 However, if you are interested in figuring out what might have gone wrong 39 before filing an issue, here are the basic details of how to read a crash 40 log. 41 42 The most interesting part of a crash log is the panic message itself and the 43 backtrace immediately following. So the first thing to do is to search the file 44 for `panic: `, which should jump you right to this message. It will look 45 something like this: 46 47 ```text 48 panic: runtime error: invalid memory address or nil pointer dereference 49 50 goroutine 123 [running]: 51 panic(0xabc100, 0xd93000a0a0) 52 /opt/go/src/runtime/panic.go:464 +0x3e6 53 github.com/hashicorp/terraform/builtin/providers/aws.resourceAwsSomeResourceCreate(...) 54 /opt/gopath/src/github.com/hashicorp/terraform/builtin/providers/aws/resource_aws_some_resource.go:123 +0x123 55 github.com/hashicorp/terraform/helper/schema.(*Resource).Refresh(...) 56 /opt/gopath/src/github.com/hashicorp/terraform/helper/schema/resource.go:209 +0x123 57 github.com/hashicorp/terraform/helper/schema.(*Provider).Refresh(...) 58 /opt/gopath/src/github.com/hashicorp/terraform/helper/schema/provider.go:187 +0x123 59 github.com/hashicorp/terraform/rpc.(*ResourceProviderServer).Refresh(...) 60 /opt/gopath/src/github.com/hashicorp/terraform/rpc/resource_provider.go:345 +0x6a 61 reflect.Value.call(...) 62 /opt/go/src/reflect/value.go:435 +0x120d 63 reflect.Value.Call(...) 64 /opt/go/src/reflect/value.go:303 +0xb1 65 net/rpc.(*service).call(...) 66 /opt/go/src/net/rpc/server.go:383 +0x1c2 67 created by net/rpc.(*Server).ServeCodec 68 /opt/go/src/net/rpc/server.go:477 +0x49d 69 ``` 70 71 The key part of this message is the first two lines that involve `hashicorp/terraform`. In this example: 72 73 ```text 74 github.com/hashicorp/terraform/builtin/providers/aws.resourceAwsSomeResourceCreate(...) 75 /opt/gopath/src/github.com/hashicorp/terraform/builtin/providers/aws/resource_aws_some_resource.go:123 +0x123 76 ``` 77 78 The first line tells us that the method that failed is 79 `resourceAwsSomeResourceCreate`, which we can deduce that involves the creation 80 of a (fictional) `aws_some_resource`. 81 82 The second line points to the exact line of code that caused the panic, 83 which--combined with the panic message itself--is normally enough for a 84 developer to quickly figure out the cause of the issue. 85 86 As a user, this information can help work around the problem in a pinch, since 87 it should hopefully point to the area of the code base in which the crash is 88 happening.