Skip to content

Commit 92b6fb7

Browse files
committed
Delete extra logs
1 parent cb94a7a commit 92b6fb7

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

function-app/adb-to-purview/src/Functions/PurviewOut.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,22 +36,19 @@ public async Task<string> Run(
3636
[EventHubTrigger("%EventHubName%", IsBatched = false ,Connection = "ListenToMessagesFromEventHub", ConsumerGroup = "%EventHubConsumerGroup%")] string input)
3737
{
3838
try{
39-
_logger.LogInformation("step 1");
4039
var enrichedEvent = await _olConsolodateEnrich.ProcessOlMessage(input);
4140
if (enrichedEvent == null)
4241
{
4342
_logger.LogInformation($"Start event, duplicate event, or no context found - eventData: {input}");
4443
return "";
4544
}
46-
_logger.LogInformation("step 2");
4745

4846
var purviewEvent = _olToPurviewParsingService.GetPurviewFromOlEvent(enrichedEvent);
4947
if (purviewEvent == null)
5048
{
5149
_logger.LogWarning("No Purview Event found");
5250
return "unable to parse purview event";
5351
}
54-
_logger.LogInformation("step 3");
5552

5653
_logger.LogInformation($"PurviewOut-ParserService: {purviewEvent}");
5754
var jObjectPurviewEvent = JsonConvert.DeserializeObject<JObject>(purviewEvent) ?? new JObject();

0 commit comments

Comments
 (0)