Add a logger interface to the std modules
parent
d072178cef
commit
06b8bd9382
|
@ -7,11 +7,19 @@ import term
|
||||||
const (
|
const (
|
||||||
FATAL = 1
|
FATAL = 1
|
||||||
ERROR = 2
|
ERROR = 2
|
||||||
WARN = 3
|
WARN = 3
|
||||||
INFO = 4
|
INFO = 4
|
||||||
DEBUG =5
|
DEBUG = 5
|
||||||
)
|
)
|
||||||
|
|
||||||
|
interface Logger {
|
||||||
|
fatal(s string)
|
||||||
|
error(s string)
|
||||||
|
warn(s string)
|
||||||
|
info(s string)
|
||||||
|
debug(s string)
|
||||||
|
}
|
||||||
|
|
||||||
struct Log{
|
struct Log{
|
||||||
mut:
|
mut:
|
||||||
level int
|
level int
|
||||||
|
|
Loading…
Reference in New Issue