From 56fe5a4b44d1c68bec8db401ae6e6a02e8452c40 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=9F=E9=85=8C=20=E9=B5=AC=E5=85=84?= Date: Tue, 21 Oct 2014 17:01:37 +0800 Subject: [PATCH] plantResult should not be immediately called --- net/WebFrame.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/net/WebFrame.js b/net/WebFrame.js index 2c56474..7fedf0c 100644 --- a/net/WebFrame.js +++ b/net/WebFrame.js @@ -62,7 +62,7 @@ Framework.prototype.parseResult = function() var method = this.router.route(); if( method ) { - Dragonfly.Debug( "Call " + method ); + Dragonfly.Log( "Call " + method, Dragonfly.Spheres.THERMO ); if( this.handlers[ method ] ) { @@ -74,7 +74,6 @@ Framework.prototype.parseResult = function() throw new FatalError( "Relay handler \"" + method + "\" is not defined" ); } - this.plantResult(); }; Framework.prototype.plantResult = function()