HTTPServer doesn't print warning when item is not found.
authorZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Wed, 28 Jan 2009 12:33:08 +0000 (12:33 +0000)
committerZeeshan Ali (Khattak) <zeeshanak@src.gnome.org>
Wed, 28 Jan 2009 12:33:08 +0000 (12:33 +0000)
svn path=/trunk/; revision=493

src/rygel/rygel-http-server.vala

index 07e11cf..8f84770 100644 (file)
@@ -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;
         }