mirror of
https://github.com/thegeeklab/drone-plugin-lib.git
synced 2024-11-05 12:50:40 +00:00
Dont hard code trace level name
This commit is contained in:
parent
c4d3e25a63
commit
537cb2c489
@ -11,6 +11,7 @@ import (
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/urfave/cli"
|
||||
)
|
||||
|
||||
@ -65,7 +66,7 @@ func NetworkFromContext(ctx *cli.Context) Network {
|
||||
// Create the context
|
||||
context := context.Background()
|
||||
|
||||
if ctx.String(logLevelFlag) == "trace" {
|
||||
if ctx.String(logLevelFlag) == logrus.TraceLevel.String() {
|
||||
context = traceHTTP(context)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user