package
Version:
v0.0.0-...-f0f63f4
Opens a new window with list of versions in this module.
Published: Aug 5, 2020
License: MIT
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Package logger standardizes the logging functions available to your team.
type ILog interface {
Fatalf(format string, v ...interface{})
Printf(format string, v ...interface{})
}
ILog provides logging capabilities.
Logger will output to a writer.
New returns a new instance of a logger.
Fatalf is equivalent to l.Printf() followed by a call to os.Exit(1).
Printf calls l.Output to print to the logger.
Arguments are handled in the manner of fmt.Printf.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.