move ILogger interface from xorm package to core package
This commit is contained in:
parent
116e4818df
commit
5510997442
|
@ -0,0 +1,9 @@
|
||||||
|
package core
|
||||||
|
|
||||||
|
// logger interface, log/syslog conform with this interface
|
||||||
|
type ILogger interface {
|
||||||
|
Debug(m string) (err error)
|
||||||
|
Err(m string) (err error)
|
||||||
|
Info(m string) (err error)
|
||||||
|
Warning(m string) (err error)
|
||||||
|
}
|
Loading…
Reference in New Issue