summaryrefslogtreecommitdiff
path: root/src/librygel-server
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2016-04-30 18:25:05 +0200
committerJens Georg <mail@jensge.org>2016-05-08 22:14:58 +0200
commitacc1ae9bccc23c0b1ee162823ca582254fad9f79 (patch)
tree999884c58976a0228d4a50b7bd95211a8dea7eab /src/librygel-server
parent9877467629a0361b30c70434f3d60cd45a441e4f (diff)
downloadrygel-acc1ae9bccc23c0b1ee162823ca582254fad9f79.tar.gz
server: Remove annoying warning
With DVD support, the warning is coming up a lot and it's really not fatal. Make it a debug instead. Signed-off-by: Jens Georg <mail@jensge.org> https://bugzilla.gnome.org/show_bug.cgi?id=685800
Diffstat (limited to 'src/librygel-server')
-rw-r--r--src/librygel-server/rygel-media-object.vala7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/librygel-server/rygel-media-object.vala b/src/librygel-server/rygel-media-object.vala
index 6a9e17b7..4949a301 100644
--- a/src/librygel-server/rygel-media-object.vala
+++ b/src/librygel-server/rygel-media-object.vala
@@ -524,9 +524,10 @@ public abstract class Rygel.MediaObject : GLib.Object {
return "rtsp-rtp-udp";
} else {
// Assume the protocol to be the scheme of the URI
- warning (_("Failed to probe protocol for URI %s. Assuming '%s'"),
- uri,
- scheme);
+ debug ("Could not translate protocol scheme for %s. " +
+ " Using '%s' as-is",
+ uri,
+ scheme);
return scheme;
}