Documentation ¶
Index ¶
- Variables
- func CurrentLogLevel() string
- func HCLogger() hclog.Logger
- func Indent(s string) string
- func IsDebugOrHigher() bool
- func LogOutput() io.Writer
- func NewLogger(name string) hclog.Logger
- func NewProviderLogger(prefix string) hclog.Logger
- func PanicHandler(tmpLogPath string) panicwrap.HandlerFunc
- func PluginPanics() []string
- func RegisterSink(f *os.File)
Constants ¶
This section is empty.
Variables ¶
var ( // ValidLevels are the log level names that Terraform recognizes. ValidLevels = []string{"TRACE", "DEBUG", "INFO", "WARN", "ERROR", "OFF"} )
Functions ¶
func CurrentLogLevel ¶
func CurrentLogLevel() string
CurrentLogLevel returns the current log level string based the environment vars
func Indent ¶
Indent adds two spaces to the beginning of each line of the given string, with the goal of making the log level filter understand it as a line continuation rather than possibly as new log lines.
func IsDebugOrHigher ¶
func IsDebugOrHigher() bool
IsDebugOrHigher returns whether or not the current log level is debug or trace
func NewLogger ¶
func NewLogger(name string) hclog.Logger
NewLogger returns a new logger based in the current global logger, with the given name appended.
func NewProviderLogger ¶
func NewProviderLogger(prefix string) hclog.Logger
NewProviderLogger returns a logger for the provider plugin, possibly with a different log level from the global logger.
func PanicHandler ¶
func PanicHandler(tmpLogPath string) panicwrap.HandlerFunc
panicHandler is what is called by panicwrap when a panic is encountered within Terraform. It is guaranteed to run after the resulting process has exited so we can take the log file, add in the panic, and store it somewhere locally.
func PluginPanics ¶
func PluginPanics() []string
PluginPanics returns a series of provider panics that were collected during execution, and formatted for output.
func RegisterSink ¶
SetupTempLog adds a new log sink which writes all logs to the given file.
Types ¶
This section is empty.