What steps will reproduce the problem?
1. create DebugConfiguration instance and pass it into the GATracker
constructor
var debugConfiguration:DebugConfiguration = new DebugConfiguration();
var tracker:GATracker = new GATracker(this, "U-Whatever", TrackerMode.AS3,
true, null, debugConfiguration);
What is the expected output? What do you see instead?
GATracker class does not have an else statement to assign the debug
property if provided
if( !debug )
{
this.debug = new DebugConfiguration();
}
should be
if( !debug )
{
this.debug = new DebugConfiguration();
}else
{
this.debug = debug;
}
Original issue reported on code.google.com by jvcle...@gmail.com on 21 Nov 2009 at 7:35
Original issue reported on code.google.com by
jvcle...@gmail.com
on 21 Nov 2009 at 7:35