Documentation ¶
Overview ¶
Package log contains the singleton object and helper functions for facilitating logging within the syft library.
Index ¶
- Variables
- func Debug(args ...interface{})
- func Debugf(format string, args ...interface{})
- func Error(args ...interface{})
- func Errorf(format string, args ...interface{})
- func Info(args ...interface{})
- func Infof(format string, args ...interface{})
- func Warn(args ...interface{})
- func Warnf(format string, args ...interface{})
Constants ¶
This section is empty.
Variables ¶
View Source
var Log logger.Logger = &nopLogger{}
Log is the singleton used to facilitate logging internally within syft
Functions ¶
func Debug ¶
func Debug(args ...interface{})
Debug logs the given arguments at the debug logging level.
func Debugf ¶
func Debugf(format string, args ...interface{})
Debugf takes a formatted template string and template arguments for the debug logging level.
func Error ¶ added in v0.7.0
func Error(args ...interface{})
Error logs the given arguments at the error logging level.
func Errorf ¶
func Errorf(format string, args ...interface{})
Errorf takes a formatted template string and template arguments for the error logging level.
func Infof ¶
func Infof(format string, args ...interface{})
Infof takes a formatted template string and template arguments for the info logging level.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.