renatofilho@320: /** renatofilho@320: * GMyth Library renatofilho@320: * renatofilho@320: * @file gmyth/gmyth_debug.c renatofilho@320: * renatofilho@320: * renatofilho@320: * Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia. renatofilho@320: * @author Renato Filho renatofilho@320: * renatofilho@320: *//* renatofilho@320: * renatofilho@320: * This program is free software; you can redistribute it and/or modify renatofilho@320: * it under the terms of the GNU Lesser General Public License as published by renatofilho@320: * the Free Software Foundation; either version 2 of the License, or renatofilho@320: * (at your option) any later version. renatofilho@320: * renatofilho@320: * This program is distributed in the hope that it will be useful, renatofilho@320: * but WITHOUT ANY WARRANTY; without even the implied warranty of renatofilho@320: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the renatofilho@320: * GNU General Public License for more details. renatofilho@320: * renatofilho@320: * You should have received a copy of the GNU Lesser General Public License renatofilho@320: * along with this program; if not, write to the Free Software renatofilho@320: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA renatofilho@320: */ renatofilho@320: renatofilho@320: #ifdef HAVE_CONFIG_H renatofilho@320: #include "config.h" renatofilho@320: #endif renatofilho@320: renatofilho@320: #include "gmyth_debug.h" renatofilho@320: renatofilho@320: void renatofilho@320: gmyth_debug_real (const char *func, renatofilho@320: const char *file, renatofilho@320: const int line, renatofilho@320: gboolean newline, renatofilho@320: const char *format, ...) renatofilho@320: { renatofilho@320: va_list args; renatofilho@320: char buffer[1025]; renatofilho@320: char str_time[255]; renatofilho@320: time_t the_time; renatofilho@320: renatofilho@320: va_start (args, format); renatofilho@320: renatofilho@320: g_vsnprintf (buffer, 1024, format, args); renatofilho@320: renatofilho@320: va_end (args); renatofilho@320: renatofilho@320: time (&the_time); renatofilho@320: strftime (str_time, 254, "%H:%M:%S", localtime (&the_time)); renatofilho@320: renatofilho@320: g_printerr (newline ? "(%s) [%p] [%s] %s:%d: %s\n" : "(%s) [%p] [%s] %s:%d: %s", renatofilho@320: str_time, g_thread_self (), func, file, line, buffer); renatofilho@320: }