2007-11-15 18:57:53 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "glib-object.h"
|
|
|
|
|
|
|
|
#include "gimp-log.h"
|
|
|
|
|
|
|
|
|
|
|
|
GimpLogFlags gimp_log_flags = 0;
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_log_init (void)
|
|
|
|
{
|
|
|
|
const gchar *env_log_val = g_getenv ("GIMP_LOG");
|
|
|
|
|
|
|
|
if (env_log_val)
|
|
|
|
{
|
|
|
|
const GDebugKey log_keys[] =
|
|
|
|
{
|
2007-11-15 21:21:23 +08:00
|
|
|
{ "tools", GIMP_LOG_TOOLS },
|
2007-11-17 02:56:10 +08:00
|
|
|
{ "dnd", GIMP_LOG_DND },
|
|
|
|
{ "help", GIMP_LOG_HELP }
|
2007-11-15 18:57:53 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
gimp_log_flags = g_parse_debug_string (env_log_val,
|
|
|
|
log_keys,
|
|
|
|
G_N_ELEMENTS (log_keys));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_log (const gchar *function,
|
|
|
|
gint line,
|
|
|
|
const gchar *domain,
|
|
|
|
const gchar *format,
|
|
|
|
...)
|
|
|
|
{
|
2007-11-15 21:21:23 +08:00
|
|
|
gchar *message;
|
2007-11-15 18:57:53 +08:00
|
|
|
|
2007-11-15 21:21:23 +08:00
|
|
|
if (format)
|
|
|
|
{
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start (args, format);
|
|
|
|
message = g_strdup_vprintf (format, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
message = g_strdup ("called");
|
|
|
|
}
|
2007-11-15 18:57:53 +08:00
|
|
|
|
|
|
|
g_log (domain, G_LOG_LEVEL_DEBUG,
|
|
|
|
"%s(%d): %s", function, line, message);
|
|
|
|
|
|
|
|
g_free (message);
|
|
|
|
}
|