package logfcheck

import "github.com/Diarkis/diarkis/analysis/passes/logfcheck"

Package logfcheck defines an analyzer that detects incorrectly formatted input within log write usages of Diarkis log.

Analyzer logfcheck

logfcheck: check for correct parameters to logf usage

We are checking to make sure that the following doesn't happen with usage of log._f functions:

logger.Errorf("Some string", "key1", val1, "key2", val2, val3) // bad

Or:

logger.Errorf("Some string", "key1", val1, "key2", "Key3") // bad

The set of functions may be controlled using flags.

Index

Variables

var Analyzer = &analysis.Analyzer{
	Name:     "diarkislogfcheck",
	Doc:      "Checks that usage of Diarkis log._f functions are correctly formatted.",
	Requires: []*analysis.Analyzer{inspect.Analyzer},
	Run:      run,
}

Analyzer for cmdcheck; checks that usage of Diarkis log._f functions are correctly formatted.

Directories

cmd The logfcheck command applies the github.com/Diarkis/diarkis/analysis/logfcheck analysis to the specified packages of Go source code.