From 34c7cfaf822503fd233478a0d4e4a448ab655b23 Mon Sep 17 00:00:00 2001 From: Andy Lindeman Date: Wed, 24 Apr 2019 09:35:35 -0400 Subject: [PATCH] Round out logging interface with functions for all levels --- pkg/log/logger.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/log/logger.go b/pkg/log/logger.go index 18de32aa..4f3cdd38 100644 --- a/pkg/log/logger.go +++ b/pkg/log/logger.go @@ -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{}) }