logger

package
v0.20.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 16, 2019 License: Apache-2.0 Imports: 7 Imported by: 0

Documentation

Overview

Package logger contains different methods to log.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CallerPrefix

func CallerPrefix(callDepth int) string

CallerPrefix returns the file and line number information about the methods that called this method, based on the current goroutine's stack. The argument callDepth is the number of stack frames to ascend, with 0 identifying the method that called CallerPrefix, 1 identifying the method that called that method, and so on.

This code is adapted from testing.go, where it is in a private method called decorate.

func DoLog

func DoLog(t *testing.T, callDepth int, writer io.Writer, args ...interface{})

DoLog logs the given arguments to the given writer, along with a timestamp and information about what test and file is doing the logging.

func Log

func Log(t *testing.T, args ...interface{})

Log logs the given arguments to stdout, along with a timestamp and information about what test and file is doing the logging. This is an alternative to t.Logf that logs to stdout immediately, rather than buffering all log output and only displaying it at the very end of the test. See the Logf method for more info.

func Logf

func Logf(t *testing.T, format string, args ...interface{})

Logf 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. This is an alternative to t.Logf that logs to stdout immediately, rather than buffering all log output and only displaying it at the very end of the test. This is useful because:

  1. It allows you to iterate faster locally, as you get feedback on whether your code changes are working as expected right away, rather than at the very end of the test run.
  1. If you have a bug in your code that causes a test to never complete or if the test code crashes,, t.Logf would show you no log output whatsoever, making debugging very hard, where as this method will show you all the log output available.
  1. If you have a test that takes a long time to complete, some CI systems will kill the test suite prematurely because there is no log output with t.Logf (e.g., CircleCI kills tests after 10 minutes of no log output). With this log method, you get log output continuously.

Note that there is a proposal to improve t.Logf (https://github.com/golang/go/issues/24929), but until that's implemented, this method is our best bet.

Types

This section is empty.

Directories

Path Synopsis
Package logger/parser contains methods to parse and restructure log output from go testing and terratest Package logger/parser contains methods to parse and restructure log output from go testing and terratest Package logger/parser contains methods to parse and restructure log output from go testing and terratest
Package logger/parser contains methods to parse and restructure log output from go testing and terratest Package logger/parser contains methods to parse and restructure log output from go testing and terratest Package logger/parser contains methods to parse and restructure log output from go testing and terratest

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL