/// <inheritdoc />
        public void LogEntry(Microsoft.Media.Analytics.ILog log)
        {
            if (this.batchingLogAgent == null)
                return;

            var aiLog = new Microsoft.Media.AudienceInsight.Log(log.Id, log.TimeStamp, log.Type, log.GetData());

            this.batchingLogAgent.LogEntry(aiLog);
        }
        /// <inheritdoc />
        public void LogEntry(Microsoft.Media.Analytics.ILog log)
        {
            if (this.batchingLogAgent == null)
            {
                return;
            }

            var aiLog = new Microsoft.Media.AudienceInsight.Log(log.Id, log.TimeStamp, log.Type, log.GetData());

            this.batchingLogAgent.LogEntry(aiLog);
        }