1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

IM polishing: log more information in log.

This commit is contained in:
anozdrin/alik@alik.
2006-10-24 18:31:10 +04:00
parent d809679967
commit c47c87ab88

View File

@ -52,8 +52,10 @@ static inline void log(FILE *file, const char *format, va_list args)
struct tm bd_time; // broken-down time struct tm bd_time; // broken-down time
localtime_r(&now, &bd_time); localtime_r(&now, &bd_time);
char buff_date[32]; char buff_date[128];
sprintf(buff_date, "%02d%02d%02d %2d:%02d:%02d\t", sprintf(buff_date, "[%d/%lu] [%02d/%02d/%02d %02d:%02d:%02d] ",
(int) getpid(),
(unsigned long) pthread_self(),
bd_time.tm_year % 100, bd_time.tm_year % 100,
bd_time.tm_mon + 1, bd_time.tm_mon + 1,
bd_time.tm_mday, bd_time.tm_mday,