mxActMsg method

String mxActMsg(
  1. String _caller,
  2. String _msg
)

Implementation

String mxActMsg(String _caller, String _msg) {
  //  use:  _mxChainS  from  mixin
  mxCallCount++;
  String caller = '';
  caller = _caller;
  String msg = '';
  msg = _msg;

  String _sS = (':mx:mixin:act:N:  $mxCallCount C: $caller  Msg:$msg');
  mxSigL.add(_sS);

  String _sS2 = (':mx:mixin:act:N:  $mxCallCount C: $caller  Msg:$msg');
  mxSigL.add(_sS2);

  print(':mx:mixin:act:N:  $mxCallCount C: $caller  Msg:$msg');
  return ':mx:mixin:act:N:  $mxCallCount C: $caller  Msg:$msg';
}