-
Notifications
You must be signed in to change notification settings - Fork 753
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce DI for logging, test warnings produced by plan.go
- Loading branch information
1 parent
e66f5a8
commit 0af99e5
Showing
3 changed files
with
109 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
package di | ||
|
||
import ( | ||
"github.com/golang/glog" | ||
) | ||
|
||
type ILogger interface { | ||
Warningf(format string, args ...interface{}) | ||
} | ||
|
||
type DefaultLogger struct{} | ||
|
||
func (d *DefaultLogger) Warningf(format string, args ...interface{}) { | ||
glog.Warningf(format, args...) | ||
} | ||
|
||
var defaultLogger = DefaultLogger{} | ||
var Logger ILogger = &defaultLogger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters