Details
-
Bug
-
Resolution: Fixed
-
None
-
1.6.x
-
None
-
Operating System: Mac OS X 10.3
Platform: PC
-
critical
-
P1
-
246
Description
When this was first written LocationAwareLogger did not support passing objects. When it was modified EventLogger should have been modified to pass the EventData as an object but instead passes a null. logEvent should be modified as:
public static void logEvent(EventData data) {
if (eventLogger.instanceofLAL) {
((LocationAwareLogger) eventLogger.logger).log(EVENT_MARKER, FQCN,
LocationAwareLogger.INFO_INT, data.toXML(), new Object[]
, null);
} else
}