Skip to content

Commit

Permalink
Indentation fixes to LogDebugTrace
Browse files Browse the repository at this point in the history
azonenberg committed May 23, 2017
1 parent a0efde1 commit 1bd2c28
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions log.cpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/***********************************************************************************************************************
* Copyright (C) 2016 Andrew Zonenberg and contributors *
* Copyright (C) 2017 Andrew Zonenberg and contributors *
* *
* Redistribution and use in source and binary forms, with or without modification, are permitted provided that the *
* following conditions are met: *
@@ -344,7 +344,7 @@ void LogDebugTrace(const char* function, const char *format, ...)
for(auto &sink : g_log_sinks)
{
//First, print the function name prefix
sink->Log(Severity::DEBUG, string("[") + sfunc + "] ");
sink->Log(Severity::DEBUG, string("[") + sfunc + "] " + sink->GetIndentString());

//then the message
va_start(va, format);

0 comments on commit 1bd2c28

Please sign in to comment.