We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe887d8 commit ad1d61aCopy full SHA for ad1d61a
pkg/gofr/migration/logger.go
@@ -1,8 +1,16 @@
1
package migration
2
3
type Logger interface {
4
+ Debug(args ...interface{})
5
+ Debugf(format string, args ...interface{})
6
Info(args ...interface{})
7
Infof(format string, args ...interface{})
8
+ Notice(args ...interface{})
9
+ Noticef(format string, args ...interface{})
10
+ Warn(args ...interface{})
11
+ Warnf(format string, args ...interface{})
12
Error(args ...interface{})
13
Errorf(format string, args ...interface{})
14
+ Fatal(args ...interface{})
15
+ Fatalf(format string, args ...interface{})
16
}
0 commit comments