more error reporting
Project: http://git-wip-us.apache.org/repos/asf/flex-utilities/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-utilities/commit/092b4083 Tree: http://git-wip-us.apache.org/repos/asf/flex-utilities/tree/092b4083 Diff: http://git-wip-us.apache.org/repos/asf/flex-utilities/diff/092b4083 Branch: refs/heads/develop Commit: 092b4083e8b381f7520cb4e8d2347b1e35635ee8 Parents: 7b2263f Author: Alex Harui <[email protected]> Authored: Mon Sep 17 17:23:35 2018 -0700 Committer: Alex Harui <[email protected]> Committed: Mon Sep 17 17:23:35 2018 -0700 ---------------------------------------------------------------------- MD5Checker/src/MD5Checker.mxml | 2 ++ 1 file changed, 2 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-utilities/blob/092b4083/MD5Checker/src/MD5Checker.mxml ---------------------------------------------------------------------- diff --git a/MD5Checker/src/MD5Checker.mxml b/MD5Checker/src/MD5Checker.mxml index f1baa73..7e22760 100644 --- a/MD5Checker/src/MD5Checker.mxml +++ b/MD5Checker/src/MD5Checker.mxml @@ -223,6 +223,7 @@ limitations under the License. if (event.status >= 400) { // some problem. skip, go to next one + fs.writeUTFBytes("error: " + event.toString()); current++; checkCurrent(); } @@ -297,6 +298,7 @@ limitations under the License. private function errorHandler(event:Event):void { + fs.writeUTFBytes("error: " + event.toString()); event.preventDefault(); current++; checkCurrent();
