rafalszemraj / fabrication

Automatically exported from code.google.com/p/fabrication
2 stars 1 forks source link

routeNotification logging issue #36

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. invoke routeNotification
2. notification is logged even if _fabricationLoggerEnabled is false
3.

What is the expected output? What do you see instead?
no logging if _fabricationLoggerEnabled is false

What version of the product are you using? On what operating system?
7.6.2, the bug is also in trunk

Please provide any additional information below.
http://code.google.com/p/fabrication/source/browse/framework/trunk/src/org/purem
vc/as3/multicore/utilities/fabrication/patterns/facade/FabricationFacade.as

Line 314:
 if (logger)
    logger.logRouteNotificationAction(transportNotification);

Should be
  if (_fabricationLoggerEnabled)

Original issue reported on code.google.com by mluz...@gmail.com on 3 Feb 2011 at 2:49

GoogleCodeExporter commented 9 years ago
Fixed in 0.8.4

Original comment by PiotrZarzycki21@gmail.com on 14 Jan 2014 at 11:16