From c2bd03eb1dc2438e0221309a6e0923c06fcfa237 Mon Sep 17 00:00:00 2001 From: mark Date: Tue, 31 Oct 2006 16:38:38 +0000 Subject: [PATCH] Output the current file URL to debug. --- campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx index 954454e4a..5ad69e432 100644 --- a/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx +++ b/campcaster/src/modules/playlistExecutor/src/GstreamerPlayer.cxx @@ -261,6 +261,8 @@ GstreamerPlayer :: open(const std::string fileUrl) close(); } + debug() << "Opening URL: " << fileUrl << endl; + if (fileUrl.find("file://") == 0) { filePath = fileUrl.substr(7, fileUrl.size()); }