...
|
...
|
@@ -10,7 +10,7 @@ import ( |
|
|
|
|
|
func CreateRequstLogFilter(logger *logs.BeeLogger) func(ctx *context.Context) {
|
|
|
return func(ctx *context.Context) {
|
|
|
requestId := fmt.Sprintf("%v.%v.%v", ctx.Input.Method(), ctx.Input.URI(), time.Now().UnixNano())
|
|
|
requestId := fmt.Sprintf("%v.%v.%v \n Header:%v", ctx.Input.Method(), ctx.Input.URI(), time.Now().UnixNano(), ctx.Request.Header)
|
|
|
ctx.Request.Header.Add("requestId", requestId)
|
|
|
var body string = "{}"
|
|
|
if ctx.Input.GetData("requestBody") != nil {
|
...
|
...
|
|