Fixed non aligned traces
git-svn-id: https://svn.code.sf.net/p/speed-dreams/code/trunk@2829 30fe4595-0a0c-4342-8851-515496e4dcbd Former-commit-id: 1dc186ece0e14ff58f11f9c9742d058ac33a62c3 Former-commit-id: 49ea17e7c8289c98056cd68fc21a4fab93fe5885
This commit is contained in:
parent
27a773027f
commit
e81ffe10a5
1 changed files with 2 additions and 2 deletions
|
@ -79,7 +79,7 @@ void GfLogSetStream(FILE* fStream)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
fprintf(gfLogStream ? gfLogStream : stderr,
|
fprintf(gfLogStream ? gfLogStream : stderr,
|
||||||
"Error\tGfLogSetStream : %s", strerror(errno));
|
"Error GfLogSetStream : %s", strerror(errno));
|
||||||
|
|
||||||
if (gfLogStream)
|
if (gfLogStream)
|
||||||
{
|
{
|
||||||
|
@ -92,7 +92,7 @@ void GfLogSetStream(FILE* fStream)
|
||||||
stm->tm_hour, stm->tm_min, stm->tm_sec);
|
stm->tm_hour, stm->tm_min, stm->tm_sec);
|
||||||
|
|
||||||
// Trace current trace level threshold.
|
// Trace current trace level threshold.
|
||||||
fprintf(gfLogStream, "%s Info\tCurrent trace level threshold : ", pszClock);
|
fprintf(gfLogStream, "%s Info Current trace level threshold : ", pszClock);
|
||||||
if (gfLogLevelThreshold >= gfLogFatal && gfLogLevelThreshold <= gfLogDebug)
|
if (gfLogLevelThreshold >= gfLogFatal && gfLogLevelThreshold <= gfLogDebug)
|
||||||
fprintf(gfLogStream, "%s\n", gfLogLevelNames[gfLogLevelThreshold]);
|
fprintf(gfLogStream, "%s\n", gfLogLevelNames[gfLogLevelThreshold]);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue