From: Yoshihiro Yamazaki Date: Wed, 21 Nov 2012 17:11:53 +0000 (+0900) Subject: console.log at head of functions. X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=63efc25e6db6fc464d6567df466154195ca760c5;p=flapp%2Fflapp.git console.log at head of functions. --- diff --git a/loader.js b/loader.js index a9d6ef5..6ae2c10 100644 --- a/loader.js +++ b/loader.js @@ -3,6 +3,7 @@ } FlappLoader.prototype = { fromURL: function(url, flapp, dict, movieClip) { + console.debug("FlappLoader.prototype.fromURL("+url+",flapp,dict,movieClip"); this.flapp = flapp; var xhr = new XMLHttpRequest(); var ibit = new FlappIBit(); @@ -28,7 +29,6 @@ return ; } if (this.header === null) { - console.log(FlappSWFHeader); this.header = FlappSWFHeader.load(ibit); this.flapp.header = this.header; } @@ -50,7 +50,7 @@ ibit.setPos(headPos); return ; } - console.log(code); + console.log("swf tag code:"+code+" length:"+length); } }; global.FlappLoader = FlappLoader;