From d776238e6b6ea53fde9967c38c17d6c2107cdd29 Mon Sep 17 00:00:00 2001 From: LukePulverenti Luke Pulverenti luke pulverenti Date: Sun, 19 Aug 2012 22:16:23 -0400 Subject: [PATCH] Removed logging message --- MediaBrowser.Controller/Providers/AudioInfoProvider.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/MediaBrowser.Controller/Providers/AudioInfoProvider.cs b/MediaBrowser.Controller/Providers/AudioInfoProvider.cs index 79ee7f9f69..4b79d2b7bc 100644 --- a/MediaBrowser.Controller/Providers/AudioInfoProvider.cs +++ b/MediaBrowser.Controller/Providers/AudioInfoProvider.cs @@ -91,8 +91,6 @@ namespace MediaBrowser.Controller.Providers audio.ProductionYear = GetDictionaryNumericValue(tags, "date"); audio.PremiereDate = GetDictionaryDateTime(tags, "retaildate") ?? GetDictionaryDateTime(tags, "retail date") ?? GetDictionaryDateTime(tags, "retail_date"); - - MediaBrowser.Common.Logging.Logger.LogInfo(tags.Comparer.GetType().Name.ToString()); } private int? GetDictionaryDiscValue(Dictionary tags)