From 6483c28e260d3469df6041efe4d3b38114a5af39 Mon Sep 17 00:00:00 2001 From: tqcq <99722391+tqcq@users.noreply.github.com> Date: Mon, 22 Jan 2024 11:41:17 +0800 Subject: [PATCH] feat update --- src/ulib/base/location.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ulib/base/location.cpp b/src/ulib/base/location.cpp index 83ca2a9..021c633 100644 --- a/src/ulib/base/location.cpp +++ b/src/ulib/base/location.cpp @@ -69,7 +69,7 @@ Location::Location(const char *function_name, const char *file_name, int line_number) : function_name_(function_name), - file_name_(file_name + StrippedFilePathPrefixLength()), + file_name_(file_name), line_number_(line_number) {}