Verbose Logging and its Outcome
Learn when to enable verbose logging and its outcomes.
We'll cover the following...
Terraform can generate detailed logs by setting the environment variable TF_LOG
to a particular level of verbosity.
Log levels
There are five log levels. From most verbose to least, they are TRACE
, DEBUG
, INFO
, WARN
, and ERROR
. The logs’ output is sent to stderr
. If the TF_LOG
variable is set to anything other than one of the listed ...