Skip to content

Commit

Permalink
stack_trace: minor log output change
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoxiao921 committed Apr 23, 2024
1 parent 1df8d10 commit 294a983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/logger/stack_trace.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ namespace big
{
if (SymGetLineFromAddr64(GetCurrentProcess(), addr, &displacement, &line))
{
m_dump << line.FileName << " L: " << line.LineNumber << " " << std::string_view(symbol->Name, symbol->NameLen);
m_dump << line.FileName << ":" << line.LineNumber << " " << std::string_view(symbol->Name, symbol->NameLen);
}
else
{
Expand Down

0 comments on commit 294a983

Please sign in to comment.