交易链路流水号为空时打印错误日志,且不记录链路至skywalking

This commit is contained in:
dark
2021-03-18 22:56:35 +08:00
parent fe956b71f6
commit 7f84e44e94
2 changed files with 11 additions and 6 deletions

View File

@@ -13,11 +13,11 @@ import java.lang.annotation.*;
*/
public @interface BizTracing {
String BIZ_ID = "bizId";
String BIZ_TYPE = "bizType";
String BIZ_ID_TAG = "bizId";
String BIZ_TYPE_TAG = "bizType";
String bizId() default "NULL_ID";
String bizId();
String bizType() default "NULL_TYPE";
String bizType();
}