You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-206338 [REVIEW] [at]michael.atchison [at]stephen.ma [at]rafa.lecina [at]michael.kirzinger #rb michael.atchison, Rafa.Lecina, stephen.ma [CL 31348674 by lorry li in ue5-main branch]
24 lines
544 B
C#
24 lines
544 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using EpicGames.Core;
|
|
using Microsoft.Extensions.Logging;
|
|
using System.Text.RegularExpressions;
|
|
|
|
#nullable enable
|
|
|
|
namespace AutomationUtils.Matchers
|
|
{
|
|
class UnsecureHttpMatcher : ILogEventMatcher
|
|
{
|
|
public LogEventMatch? Match(ILogCursor cursor)
|
|
{
|
|
if (cursor.Contains("WARNING: Insecure HTTP request"))
|
|
{
|
|
return new LogEventBuilder(cursor).ToMatch(LogEventPriority.Normal, LogLevel.Information, KnownLogEvents.Systemic_SignToolTimeStampServer);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
}
|