renatofilho@320
|
1 |
/**
|
renatofilho@320
|
2 |
* GMyth Library
|
renatofilho@320
|
3 |
*
|
renatofilho@320
|
4 |
* @file gmyth/gmyth_debug.c
|
renatofilho@320
|
5 |
*
|
renatofilho@320
|
6 |
*
|
renatofilho@320
|
7 |
* Copyright (C) 2006 INdT - Instituto Nokia de Tecnologia.
|
renatofilho@320
|
8 |
* @author Renato Filho <renato.filho@indt.org.br>
|
renatofilho@320
|
9 |
*
|
renatofilho@320
|
10 |
*//*
|
renatofilho@320
|
11 |
*
|
renatofilho@320
|
12 |
* This program is free software; you can redistribute it and/or modify
|
renatofilho@320
|
13 |
* it under the terms of the GNU Lesser General Public License as published by
|
renatofilho@320
|
14 |
* the Free Software Foundation; either version 2 of the License, or
|
renatofilho@320
|
15 |
* (at your option) any later version.
|
renatofilho@320
|
16 |
*
|
renatofilho@320
|
17 |
* This program is distributed in the hope that it will be useful,
|
renatofilho@320
|
18 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
renatofilho@320
|
19 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
renatofilho@320
|
20 |
* GNU General Public License for more details.
|
renatofilho@320
|
21 |
*
|
renatofilho@320
|
22 |
* You should have received a copy of the GNU Lesser General Public License
|
renatofilho@320
|
23 |
* along with this program; if not, write to the Free Software
|
renatofilho@320
|
24 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
renatofilho@320
|
25 |
*/
|
renatofilho@320
|
26 |
|
renatofilho@320
|
27 |
#ifdef HAVE_CONFIG_H
|
renatofilho@320
|
28 |
#include "config.h"
|
renatofilho@320
|
29 |
#endif
|
renatofilho@320
|
30 |
|
renatofilho@320
|
31 |
#include "gmyth_debug.h"
|
renatofilho@320
|
32 |
|
renatofilho@320
|
33 |
void
|
renatofilho@320
|
34 |
gmyth_debug_real (const char *func,
|
renatofilho@320
|
35 |
const char *file,
|
renatofilho@320
|
36 |
const int line,
|
renatofilho@320
|
37 |
gboolean newline,
|
renatofilho@320
|
38 |
const char *format, ...)
|
renatofilho@320
|
39 |
{
|
renatofilho@320
|
40 |
va_list args;
|
renatofilho@320
|
41 |
char buffer[1025];
|
renatofilho@320
|
42 |
char str_time[255];
|
renatofilho@320
|
43 |
time_t the_time;
|
renatofilho@320
|
44 |
|
renatofilho@320
|
45 |
va_start (args, format);
|
renatofilho@320
|
46 |
|
renatofilho@320
|
47 |
g_vsnprintf (buffer, 1024, format, args);
|
renatofilho@320
|
48 |
|
renatofilho@320
|
49 |
va_end (args);
|
renatofilho@320
|
50 |
|
renatofilho@320
|
51 |
time (&the_time);
|
renatofilho@320
|
52 |
strftime (str_time, 254, "%H:%M:%S", localtime (&the_time));
|
renatofilho@320
|
53 |
|
renatofilho@320
|
54 |
g_printerr (newline ? "(%s) [%p] [%s] %s:%d: %s\n" : "(%s) [%p] [%s] %s:%d: %s",
|
renatofilho@320
|
55 |
str_time, g_thread_self (), func, file, line, buffer);
|
renatofilho@320
|
56 |
}
|