# Packages
Package logger/parser contains methods to parse and restructure log output from go testing and terratest.
# Functions
CallerPrefix returns the file and line number information about the methods that called this method, based on the current goroutine's stack.
DoLog logs the given arguments to the given writer, along with a timestamp and information about what test and file is doing the logging.
Log logs the given arguments to stdout, along with a timestamp and information about what test and file is doing the logging.
Deprecated: use Logger instead, as it provides more flexibility on logging.
# Variables
Default is the default logger that is used for the Logf function, if no one is provided.
Discard discards all logging.
Terratest logs the given format and arguments, formatted using fmt.Sprintf, to stdout, along with a timestamp and information about what test and file is doing the logging.
TestingT can be used to use Go's testing.T to log.