Skip to content

Commit

Permalink
Fixed LogDebugTrace printing :: twice
Browse files Browse the repository at this point in the history
azonenberg committed Mar 8, 2017
1 parent e466698 commit 5b1cfa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion log.cpp
Original file line number Diff line number Diff line change
@@ -282,7 +282,7 @@ void LogDebugTrace(const char* function, const char *format, ...)
string name = sfunc.substr(colpos+2, namelen);

//Get the class name
size_t clen = colpos - coff + 1;
size_t clen = colpos - coff - 1;
string cls = sfunc.substr(coff + 1, clen);

//Format final result

0 comments on commit 5b1cfa9

Please sign in to comment.