Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to run rtsp url from the VLC player. But an error appears, and "see logs for details" comes up in a dialog box.

How can I enable logs in VLC?

share|improve this question

closed as off topic by xdazz, Bobrovsky, jonsca, Eitan T, jv42 Sep 30 '12 at 17:57

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 8 down vote accepted

vlc.exe --extraintf=http:logger --verbose=2 --file-logging --logfile=vlc-log.txt I found the following command to run from command line.

share|improve this answer
IMHO is better to increase the verbosity level than change the command for execute the program – MiPnamic Nov 14 '12 at 16:37
It depends. I needed to save logs to a file so I can post on pastebin.com and then link that on a forum topic regarding my problem. Different needs and all. – user1383815 Nov 18 '12 at 6:03

Or you can use the more obvious solution, right in the GUI: Tools -> Messages (set verbosity to 2)...

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.