mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
log: make const/struct public
This commit is contained in:
parent
ed445860eb
commit
6a609cb046
@ -4,7 +4,7 @@ import os
|
||||
import time
|
||||
import term
|
||||
|
||||
const (
|
||||
pub const (
|
||||
FATAL = 1
|
||||
ERROR = 2
|
||||
WARN = 3
|
||||
@ -20,13 +20,12 @@ interface Logger {
|
||||
debug(s string)
|
||||
}
|
||||
|
||||
struct Log{
|
||||
pub struct Log {
|
||||
mut:
|
||||
level int
|
||||
output string
|
||||
}
|
||||
|
||||
|
||||
pub fn (l mut Log) set_level(level int){
|
||||
l.level = level
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user