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:
pouillot 2010-10-02 20:41:21 +00:00
parent 27a773027f
commit e81ffe10a5

View file

@ -79,7 +79,7 @@ void GfLogSetStream(FILE* fStream)
}
else
fprintf(gfLogStream ? gfLogStream : stderr,
"Error\tGfLogSetStream : %s", strerror(errno));
"Error GfLogSetStream : %s", strerror(errno));
if (gfLogStream)
{
@ -92,7 +92,7 @@ void GfLogSetStream(FILE* fStream)
stm->tm_hour, stm->tm_min, stm->tm_sec);
// 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)
fprintf(gfLogStream, "%s\n", gfLogLevelNames[gfLogLevelThreshold]);
else