Completing CSV export

This commit is contained in:
JiaJu Zhuang
2023-07-29 19:30:31 +08:00
parent 646490df9a
commit 9eb83ca69e
6 changed files with 178 additions and 33 deletions

View File

@ -68,7 +68,7 @@ public class LogUtils {
* @return
*/
public static String generateTraceId() {
String traceId = UUID.fastUUID().toString();
String traceId = UUID.fastUUID().toString().replaceAll("-", "");
TRACE_ID_THREAD_LOCAL.set(traceId);
return traceId;
}