[vlc-commits] lua/http: remove stray debug output within VLM XML

Pierre Ynard git at videolan.org
Sat Aug 1 17:05:57 CEST 2020


vlc/vlc-3.0 | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Sat Aug  1 16:51:22 2020 +0200| [30768699b2e5308cbe0f474e0817a33cc6856459] | committer: Pierre Ynard

lua/http: remove stray debug output within VLM XML

Refs #9590

(cherry picked from commit 70751ff62ab3a360e544004dba448a4e11c38d14)
Signed-off-by: Pierre Ynard <linkfanel at yahoo.fr>

> http://git.videolan.org/gitweb.cgi/vlc/vlc-3.0.git/?a=commit;h=30768699b2e5308cbe0f474e0817a33cc6856459
---

 share/lua/http/requests/vlm.xml | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/share/lua/http/requests/vlm.xml b/share/lua/http/requests/vlm.xml
index ddb9f2b562..9d36755460 100644
--- a/share/lua/http/requests/vlm.xml
+++ b/share/lua/http/requests/vlm.xml
@@ -26,16 +26,9 @@ vim:syntax=lua
 ]]
 
 local function insert_children(c,t)
-  print(c.children)
     if c.children then
       for _, d in ipairs(c.children) do
         table.insert(t,d.value or d.name)
-        if d.value then
-        print("V"..d.value.."|")
-        end
-        if d.name then
-        print("N"..d.name.."|")
-        end
       end
     end
 end



More information about the vlc-commits mailing list