Hi, I've been playing around alot with the flowplayer source and have successfully compiled it and hardcoded some values so that they cannot be overwritten in the javascript configuration. The app I'm building has strict requirements. I've hardcoded the source so that logs do not show up, like the log.info's and log.debug's and errors etc... , however there's one thing I can't seem to disable in the source.
If I set debug:true in the javascript config, $f.fireEvent logs still show up in my debugger Console. Everything else I hardcoded does not show up as expected.
My question is, how can I remove those $f.fireEvent logs from the Console, permanently. I know I CAN do it through tweaking the js file, but I'd like to know if there's a way to block that information permanently by hardcoding and compiling the source code?
Here's an example of the logs I'd like to get rid of:
"$f.fireEvent ["onBeforeBegin", 0, Object , null, null, null]"
In my debugger I can open up the Object and the object reveals the complete URL of the stream which I do not want anyone to see, so that's my main problem.
Any ideas?
Thanks!
If I set debug:true in the javascript config, $f.fireEvent logs still show up in my debugger Console. Everything else I hardcoded does not show up as expected.
My question is, how can I remove those $f.fireEvent logs from the Console, permanently. I know I CAN do it through tweaking the js file, but I'd like to know if there's a way to block that information permanently by hardcoding and compiling the source code?
Here's an example of the logs I'd like to get rid of:
"$f.fireEvent ["onBeforeBegin", 0, Object , null, null, null]"
In my debugger I can open up the Object and the object reveals the complete URL of the stream which I do not want anyone to see, so that's my main problem.
Any ideas?
Thanks!