protected void AppendRealtimeDetail(StatusActivityType statusType,
                                     string message, params string[] args)
 {
     if (!CollectionUtils.IsNullOrEmpty(args))
     {
         message = string.Format(message, args);
     }
     AppendAuditLogEvent(message);
     _transactionManager.AppendRealtimeTransactionDetail(_transactionId, message, statusType);
 }