Skip to content

Commit

Permalink
Comment out superfluous logs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dionjwa committed Dec 29, 2014
1 parent 1c0e06a commit 19f8039
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/t9/unit/AsyncTestTools.hx
Expand Up @@ -152,7 +152,7 @@ class AsyncTestTools
} else {
testResults.err = err;
}
Log.info("onTestFinish");
// Log.info("onTestFinish");
onTestFinish(err);
}
}
Expand All @@ -166,8 +166,8 @@ class AsyncTestTools

//Now actually make the call
try {
Log.info(asyncFieldName);
Reflect.callMethod(inst, Reflect.field(inst, asyncFieldName), [asyncTestCallback, function() {trace("Called back from async " + asyncFieldName);}]);
// Log.info(asyncFieldName);
Reflect.callMethod(inst, Reflect.field(inst, asyncFieldName), [asyncTestCallback, function() {/**trace("Called back from async " + asyncFieldName);*/}]);
} catch (e :Dynamic) {
Log.error(" " + className + "::" + asyncFieldName + " Error: " + Std.string(e));
if (!finished) {
Expand Down

0 comments on commit 19f8039

Please sign in to comment.