Mike Schwörer
ce7837b9ef
All checks were successful
Build Docker and Deploy / Run goext test-suite (push) Successful in 3m39s
19 lines
336 B
Go
19 lines
336 B
Go
package exerr
|
|
|
|
type Method string
|
|
|
|
const (
|
|
MethodOutput Method = "OUTPUT"
|
|
MethodPrint Method = "PRINT"
|
|
MethodBuild Method = "BUILD"
|
|
MethodFatal Method = "FATAL"
|
|
)
|
|
|
|
type LogPrintLevel string
|
|
|
|
const (
|
|
LogPrintFull LogPrintLevel = "Full"
|
|
LogPrintOverview LogPrintLevel = "Overview"
|
|
LogPrintShort LogPrintLevel = "Short"
|
|
)
|