Skip to content

Commit cc8448b

Browse files
author
Niall Langley
committed
Added debug logging for current time zone
1 parent 0b29cd4 commit cc8448b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

DataPipelineTools/DataLake/DataLakeService.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using Newtonsoft.Json.Linq;
77
using System;
88
using System.Collections.Generic;
9+
using System.Globalization;
910
using System.IO;
1011
using System.Linq;
1112
using System.Linq.Dynamic.Core;
@@ -132,6 +133,8 @@ await CheckPathAsync(getItemsConfig.Directory, true) :
132133
var dynamicLinqQueryValue = filter.GetDynamicLinqValue();
133134
_logger.LogInformation($"Applying filter: paths.AsQueryable().Where(\"{dynamicLinqQuery}\", \"{filter.Value}\").ToList()");
134135
paths = paths.AsQueryable().Where(dynamicLinqQuery, dynamicLinqQueryValue).ToList();
136+
137+
_logger.LogInformation($"Current Time Zone: {TimeZoneInfo.Local.StandardName}");
135138
}
136139

137140
// 2: Sort the results

0 commit comments

Comments
 (0)