logModuleInteraction method

  1. @override
void logModuleInteraction(
  1. String source,
  2. String target,
  3. String type
)
override

Log a module interaction

Implementation

@override
void logModuleInteraction(String source, String target, String type) {
  AirLogger.debug(
    '[Analytics] Interaction: $source -> $target',
    context: {'type': type},
  );
}