chore: remove debugging log statements
This commit is contained in:
@@ -70,7 +70,6 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.Providers
|
|||||||
result.Item.Path = info.Path;
|
result.Item.Path = info.Path;
|
||||||
result.Provider = Name;
|
result.Provider = Name;
|
||||||
result.People = peopleInfo;
|
result.People = peopleInfo;
|
||||||
_logger.LogInformation("{Message}", "Result of video to episode: \n" + JsonConvert.SerializeObject(result));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
|||||||
@@ -82,7 +82,6 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
|
|||||||
if (response.IsSuccessStatusCode)
|
if (response.IsSuccessStatusCode)
|
||||||
{
|
{
|
||||||
string rawData = await response.Content.ReadAsStringAsync().ConfigureAwait(true);
|
string rawData = await response.Content.ReadAsStringAsync().ConfigureAwait(true);
|
||||||
_logger.LogInformation("{Message}", url + ": " + rawData);
|
|
||||||
channel = JsonConvert.DeserializeObject<Channel>(rawData);
|
channel = JsonConvert.DeserializeObject<Channel>(rawData);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ namespace Jellyfin.Plugin.TubeArchivistMetadata.TubeArchivist
|
|||||||
{
|
{
|
||||||
Name = Title,
|
Name = Title,
|
||||||
Overview = Utils.FormatDescription(Description),
|
Overview = Utils.FormatDescription(Description),
|
||||||
// SeasonName = Published.Year.ToString(CultureInfo.CurrentCulture),
|
SeasonName = Published.Year.ToString(CultureInfo.CurrentCulture),
|
||||||
ParentIndexNumber = Published.Year,
|
ParentIndexNumber = Published.Year,
|
||||||
IndexNumber = (Published.Year * 10000) + (Published.Month * 100) + Published.Day,
|
IndexNumber = (Published.Year * 10000) + (Published.Month * 100) + Published.Day,
|
||||||
SeriesName = Channel.Name,
|
SeriesName = Channel.Name,
|
||||||
|
|||||||
Reference in New Issue
Block a user