From 0fdf0da9d565ac1fb715a0ca6a890e157d38c099 Mon Sep 17 00:00:00 2001 From: Ray Greenwell Date: Thu, 13 Nov 2008 02:10:16 +0000 Subject: [PATCH] Nixed debug logging. git-svn-id: svn+ssh://src.earth.threerings.net/nenya/trunk@703 ed5b42cb-e716-0410-a449-f6a68f950b19 --- src/as/com/threerings/flash/video/FlvVideoPlayer.as | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/src/as/com/threerings/flash/video/FlvVideoPlayer.as b/src/as/com/threerings/flash/video/FlvVideoPlayer.as index fc846589..21bc6a84 100644 --- a/src/as/com/threerings/flash/video/FlvVideoPlayer.as +++ b/src/as/com/threerings/flash/video/FlvVideoPlayer.as @@ -221,7 +221,7 @@ public class FlvVideoPlayer extends EventDispatcher protected function handleStreamNetStatus (event :NetStatusEvent) :void { - log.debug("NetStatus", "level", event.info.level, "code", event.info.code); +// log.debug("NetStatus", "level", event.info.level, "code", event.info.code); switch (event.info.code) { case "NetStream.Play.Stop": @@ -266,12 +266,10 @@ public class FlvVideoPlayer extends EventDispatcher */ protected function handleMetaData (info :Object) :void { - log.info("Got video metadata:"); - for (var n :String in info) { - log.info(" " + n + ": " + info[n]); - } - - // TODO: total duration is info.duration +// log.debug("Got video metadata:"); +// for (var n :String in info) { +// log.debug(" " + n + ": " + info[n]); +// } if ("duration" in info) { _duration = Number(info.duration);