diff --git a/e2e/test/Helpers/ConsoleEventListener.cs b/e2e/test/Helpers/ConsoleEventListener.cs index 0ec251a538..47a8f608e1 100644 --- a/e2e/test/Helpers/ConsoleEventListener.cs +++ b/e2e/test/Helpers/ConsoleEventListener.cs @@ -13,7 +13,7 @@ public sealed class ConsoleEventListener : EventListener // OnEventSourceCreated is triggered as soon as the EventListener is registered and an event source is created. // So trying to configure this value in the ConsoleEventListener constructor does not work. // The OnEventSourceCreated can be triggered sooner than the filter is initialized in the ConsoleEventListener constructor. - private static string[] _eventFilters = new string[] { "DotNetty-Default", "Microsoft-Azure-Devices" }; + private static string[] _eventFilters = new string[] { "DotNetty-Default", "Microsoft-Azure-Devices", "Azure-Core", "Azure-Identity" }; private readonly object _lock = new object();