aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ephy-debug.c
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-12 09:25:12 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-01-12 09:25:12 +0800
commit61abe1395add8bfcb726c739c4d1d633bed9f77d (patch)
treec77235427cf52a204a9c52630007977f925c670a /lib/ephy-debug.c
parentdcccb22acc252879837bb08a7f6eaaea91005860 (diff)
downloadgsoc2013-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 ***
Diffstat (limited to 'lib/ephy-debug.c')
-rw-r--r--lib/ephy-debug.c47
1 files changed, 47 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);
+}