r794 - /unstable/evolution-data-server/debian/patches/25_mute-debug-messages.patch

oysteigi-guest at users.alioth.debian.org oysteigi-guest at users.alioth.debian.org
Sun May 6 23:09:25 UTC 2007


Author: oysteigi-guest
Date: Sun May  6 23:09:02 2007
New Revision: 794

URL: http://svn.debian.org/wsvn/pkg-evolution/?sc=1&rev=794
Log:
Correct mute patch

Modified:
    unstable/evolution-data-server/debian/patches/25_mute-debug-messages.patch

Modified: unstable/evolution-data-server/debian/patches/25_mute-debug-messages.patch
URL: http://svn.debian.org/wsvn/pkg-evolution/unstable/evolution-data-server/debian/patches/25_mute-debug-messages.patch?rev=794&op=diff
==============================================================================
--- unstable/evolution-data-server/debian/patches/25_mute-debug-messages.patch (original)
+++ unstable/evolution-data-server/debian/patches/25_mute-debug-messages.patch Sun May  6 23:09:02 2007
@@ -1,6 +1,6 @@
 diff -Nur evolution-data-server-1.10.1/libedataserver/e-categories.c evolution-data-server-1.10.1.new/libedataserver/e-categories.c
 --- evolution-data-server-1.10.1/libedataserver/e-categories.c	2007-04-09 14:42:55.000000000 +0200
-+++ evolution-data-server-1.10.1.new/libedataserver/e-categories.c	2007-05-07 00:52:02.000000000 +0200
++++ evolution-data-server-1.10.1.new/libedataserver/e-categories.c	2007-05-07 01:08:13.000000000 +0200
 @@ -30,6 +30,8 @@
  
  #include "libedataserver-private.h"
@@ -15,7 +15,7 @@
  	filename = build_categories_filename ();
  
 -	g_debug ("Saving categories to \"%s\"", filename);
-+	d ("Saving categories to \"%s\"", filename);
++	d (g_debug ("Saving categories to \"%s\"", filename));
  
  	/* build the file contents */
  	buffer = g_string_new ("<categories>\n");
@@ -24,7 +24,7 @@
  		goto exit;
  
 -	g_debug ("Loading categories from \"%s\"", filename);
-+	d ("Loading categories from \"%s\"", filename);
++	d (g_debug ("Loading categories from \"%s\"", filename));
  
  	if (!g_file_get_contents (filename, &contents, &length, &error)) {
  		g_warning ("Unable to load categories: %s", error->message);
@@ -33,7 +33,7 @@
  		goto exit;
  
 -	g_debug ("Loading categories from GConf key \"%s\"", key);
-+	d ("Loading categories from GConf key \"%s\"", key);
++	d (g_debug ("Loading categories from GConf key \"%s\"", key));
  
  	n_added = parse_categories (string, strlen (string));
  	if (n_added == 0)
@@ -42,7 +42,7 @@
  	n_added = load_categories ();
  	if (n_added > 0) {
 -		g_debug ("Loaded %d categories", n_added);
-+		d ("Loaded %d categories", n_added);
++		d (g_debug ("Loaded %d categories", n_added));
  		save_is_pending = FALSE;
  		return;
  	}
@@ -50,14 +50,14 @@
  	n_added = migrate_old_categories ();
  	if (n_added > 0) {
 -		g_debug ("Loaded %d categories", n_added);
-+		d ("Loaded %d categories", n_added);
++		d (g_debug ("Loaded %d categories", n_added));
  		save_categories ();
  		return;
  	}
  
  	load_default_categories ();
 -	g_debug ("Loaded default categories");
-+	d ("Loaded default categories");
++	d (g_debug ("Loaded default categories"));
  	save_categories ();
  }
  




More information about the pkg-evolution-commits mailing list