Browse Source

print 2 more trace level

marion 5 years ago
parent
commit
d63a0a189c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      utils/goroutine_recover.go

+ 1 - 1
utils/goroutine_recover.go

@@ -13,7 +13,7 @@ func DefaultGoroutineRecover(l *logger.Logger, action string) {
 			} else {
 				log.Print(action, " goroutine 异常 ", e.Error())
 			}
-			stack := string(GetStack(5))
+			stack := string(GetStack(3))
 			println(stack)
 		}
 	}