Helius
2022-02-14 59cf24b0aba393e145f4ba3d58e98b7a01a80992
zq-erp/src/main/java/com/matrix/core/tools/MdcUtil.java
@@ -13,12 +13,12 @@
   private static final String TR_KEY = "Tr";
   public static void setRequestId() {
      MDC.clear();
      MDC.remove(TR_KEY);
      MDC.put(TR_KEY, "TR = " + StringUtils.getRandomString(16) + "");
   }
   public static void clearRequestId() {
      MDC.clear();
      MDC.remove(TR_KEY);
   }
   public static String getMdc() {