From 61abe1395add8bfcb726c739c4d1d633bed9f77d Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sun, 12 Jan 2003 01:25:12 +0000 Subject: *** empty log message *** --- lib/ephy-debug.c | 47 +++++++++++++++++++++++++++++++++++++++++++++++ lib/ephy-debug.h | 40 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 87 insertions(+) create mode 100644 lib/ephy-debug.c create mode 100644 lib/ephy-debug.h (limited to 'lib') diff --git a/lib/ephy-debug.c b/lib/ephy-debug.c new file mode 100644 index 000000000..a97c081d2 --- /dev/null +++ b/lib/ephy-debug.c @@ -0,0 +1,47 @@ +/* + * Copyright (C) 2003 Marco Pesenti Gritti + * + * 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, 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 "ephy-debug.h" + +#include + + +static const char *ephy_debug_modules; + +static void +log_func (const gchar *log_domain, + GLogLevelFlags log_level, + const gchar *message, + gpointer user_data) +{ + if (!ephy_debug_modules) return; + + if ((strcmp (ephy_debug_modules, "all") == 0) || + strstr (message, ephy_debug_modules) != NULL) + { + g_print ("%s\n", message); + } +} + +void +ephy_debug_init (void) +{ + ephy_debug_modules = g_getenv ("EPHY_DEBUG_MODULES"); + + g_log_set_handler (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, log_func, NULL); +} diff --git a/lib/ephy-debug.h b/lib/ephy-debug.h new file mode 100644 index 000000000..4939bffef --- /dev/null +++ b/lib/ephy-debug.h @@ -0,0 +1,40 @@ +/* + * Copyright (C) 2003 Marco Pesenti Gritti + * + * 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, 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. + */ + +#ifndef EPHY_DEBUG_H +#define EPHY_DEBUG_H + +#include + +G_BEGIN_DECLS + +#ifdef DISABLE_LOGGING +#define LOG() +#else +#define LOG(msg, args...) \ +g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \ + "[ %s ] " msg, \ + __FILE__, \ + args); +#endif + +void ephy_debug_init (void); + +G_END_DECLS + +#endif -- cgit v1.2.3