Skip to content

Commit

Permalink
Fix addTraceSummaryValue redirection.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Klemm committed Apr 22, 2024
1 parent 10111dc commit ee533ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion esp/platform/espcontext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ class CEspContext : public CInterface, implements IEspContext

virtual void addTraceSummaryValue(LogLevel logLevel, const char *name, const char *value, const unsigned int group = TXSUMMARY_GRP_CORE)
{
addTraceSummaryValue(logLevel, value, nullptr, group);
addTraceSummaryValue(logLevel, name, value, nullptr, group);
}

virtual void addTraceSummaryValue(LogLevel logLevel, const char *name, const char *value, const char* otName, const unsigned int group = TXSUMMARY_GRP_CORE)
Expand Down

0 comments on commit ee533ad

Please sign in to comment.