Skip to content
Snippets Groups Projects
Unverified Commit 06ec3810 authored by Eric Chiang's avatar Eric Chiang Committed by GitHub
Browse files

Merge pull request #1432 from alindeman/warnf

Round out logging interface with functions for all levels
parents 0babb2df 34c7cfaf
No related branches found
Tags
No related merge requests found
......@@ -6,10 +6,13 @@ package log
// Logger serves as an adapter interface for logger libraries
// so that dex does not depend on any of them directly.
type Logger interface {
Debug(args ...interface{})
Info(args ...interface{})
Warn(args ...interface{})
Error(args ...interface{})
Debugf(format string, args ...interface{})
Infof(format string, args ...interface{})
Warnf(format string, args ...interface{})
Errorf(format string, args ...interface{})
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment