diff options
author | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-12 09:25:12 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-01-12 09:25:12 +0800 |
commit | 61abe1395add8bfcb726c739c4d1d633bed9f77d (patch) | |
tree | c77235427cf52a204a9c52630007977f925c670a | |
parent | dcccb22acc252879837bb08a7f6eaaea91005860 (diff) | |
download | gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.tar gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.tar.gz gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.tar.bz2 gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.tar.lz gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.tar.xz gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.tar.zst gsoc2013-epiphany-61abe1395add8bfcb726c739c4d1d633bed9f77d.zip |
*** empty log message ***
-rw-r--r-- | lib/ephy-debug.c | 47 | ||||
-rw-r--r-- | lib/ephy-debug.h | 40 |
2 files changed, 87 insertions, 0 deletions
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 <string.h> + + +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 <glib.h> + +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 |