Commit f0ad68c9 authored by unknown's avatar unknown
Browse files

IM polishing: log more information in log.


server-tools/instance-manager/log.cc:
  Add pid/thread id to the each log record; split date time fields.
parent 1e3c6cab
Loading
Loading
Loading
Loading
+10 −8
Original line number Diff line number Diff line
@@ -52,8 +52,10 @@ static inline void log(FILE *file, const char *format, va_list args)
  struct tm bd_time;                            // broken-down time
  localtime_r(&now, &bd_time);

  char buff_date[32];
  sprintf(buff_date, "%02d%02d%02d %2d:%02d:%02d\t",
  char buff_date[128];
  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_mon + 1,
          bd_time.tm_mday,