Add a logger interface to the std modules
parent
d072178cef
commit
06b8bd9382
|
@ -12,6 +12,14 @@ const (
|
|||
DEBUG = 5
|
||||
)
|
||||
|
||||
interface Logger {
|
||||
fatal(s string)
|
||||
error(s string)
|
||||
warn(s string)
|
||||
info(s string)
|
||||
debug(s string)
|
||||
}
|
||||
|
||||
struct Log{
|
||||
mut:
|
||||
level int
|
||||
|
|
Loading…
Reference in New Issue