Initial elektromLogging library
This commit is contained in:
parent
e3caa90c31
commit
1fd6c7e4f4
12 changed files with 571 additions and 0 deletions
17
elektronLogging/types/types.go
Normal file
17
elektronLogging/types/types.go
Normal file
|
@ -0,0 +1,17 @@
|
|||
package elektronLogging
|
||||
|
||||
import "github.com/fatih/color"
|
||||
|
||||
const (
|
||||
ERROR = iota
|
||||
WARNING = iota
|
||||
GENERAL = iota
|
||||
SUCCESS = iota
|
||||
CONSOLE = iota
|
||||
PCP = iota
|
||||
SCHED_TRACE = iota
|
||||
SPS = iota
|
||||
SCHED_WINDOW = iota
|
||||
CLSFN_TASKDIST_OVERHEAD = iota
|
||||
)
|
||||
|
Reference in a new issue