dect
/
asterisk
Archived
13
0
Fork 0

Fix -T option. (issue #10073 reported by xylome)

git-svn-id: http://svn.digium.com/svn/asterisk/trunk@72233 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
file 2007-06-27 19:57:36 +00:00
parent d69f3f4446
commit acb998b38d
1 changed files with 14 additions and 14 deletions

View File

@ -992,6 +992,20 @@ void ast_verbose(const char *fmt, ...)
if (!(buf = ast_str_thread_get(&verbose_buf, VERBOSE_BUF_INIT_SIZE)))
return;
if (ast_opt_timestamp) {
time_t t;
struct tm tm;
char date[40];
char *datefmt;
time(&t);
ast_localtime(&t, &tm, NULL);
strftime(date, sizeof(date), dateformat, &tm);
datefmt = alloca(strlen(date) + 3 + strlen(fmt) + 1);
sprintf(datefmt, "[%s] %s", date, fmt);
fmt = datefmt;
}
/* Build string */
va_start(ap, fmt);
res = ast_str_set_va(&buf, 0, fmt, ap);
@ -1011,20 +1025,6 @@ void ast_verbose(const char *fmt, ...)
/* Set type */
logmsg->type = LOGMSG_VERBOSE;
if (ast_opt_timestamp) {
time_t t;
struct tm tm;
char date[40];
char *datefmt;
time(&t);
ast_localtime(&t, &tm, NULL);
strftime(date, sizeof(date), dateformat, &tm);
datefmt = alloca(strlen(date) + 3 + strlen(fmt) + 1);
sprintf(datefmt, "[%s] %s", date, fmt);
fmt = datefmt;
}
/* Add to the list and poke the thread if possible */
if (logthread != AST_PTHREADT_NULL) {
AST_LIST_LOCK(&logmsgs);