From: Zeeshan Ali (Khattak) Date: Wed, 28 Jan 2009 12:33:08 +0000 (+0000) Subject: HTTPServer doesn't print warning when item is not found. X-Git-Tag: RYGEL_0_2_2~150 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7d8798639864b21575b192e81e7f87397cc2ae28;p=profile%2Fivi%2Frygel.git HTTPServer doesn't print warning when item is not found. svn path=/trunk/; revision=493 --- diff --git a/src/rygel/rygel-http-server.vala b/src/rygel/rygel-http-server.vala index 07e11cf..8f84770 100644 --- a/src/rygel/rygel-http-server.vala +++ b/src/rygel/rygel-http-server.vala @@ -134,7 +134,6 @@ public class Rygel.HTTPServer : GLib.Object { // Signal the requestion for an item this.item_requested (item_id, out item); if (item == null) { - warning ("Requested item '%s' not found\n", item_id); msg.set_status (Soup.KnownStatusCode.NOT_FOUND); return; }