4 * @file gmyth/gmyth_debug.c
7 * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
8 * @author Renato Filho <renato.filho@indt.org.br>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU Lesser General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include "gmyth_debug.h"
34 gmyth_debug_real (const char *func,
38 const char *format, ...)
45 va_start (args, format);
47 g_vsnprintf (buffer, 1024, format, args);
52 strftime (str_time, 254, "%H:%M:%S", localtime (&the_time));
54 g_printerr (newline ? "(%s) [%p] [%s] %s:%d: %s\n" : "(%s) [%p] [%s] %s:%d: %s",
55 str_time, g_thread_self (), func, file, line, buffer);