From 96153aa8d769d91f703563a43fa89ae645b6b64b Mon Sep 17 00:00:00 2001 From: Dayo Lawal Date: Wed, 16 Jun 2021 12:17:59 -0500 Subject: [PATCH] On output change Signed-off-by: Dayo Lawal --- .../AzQtComponents/Application/AzQtTraceLogger.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtTraceLogger.cpp b/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtTraceLogger.cpp index 2e943083b3..46e8ba8782 100644 --- a/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtTraceLogger.cpp +++ b/Code/Framework/AzQtComponents/AzQtComponents/Application/AzQtTraceLogger.cpp @@ -16,14 +16,6 @@ namespace AzQtComponents { bool AzQtTraceLogger::OnOutput(const char* window, const char* message) { - // Suppress spam from the Source Control system - constexpr char sourceControlWindow[] = "Source Control"; - - if (0 == strncmp(window, sourceControlWindow, AZ_ARRAY_SIZE(sourceControlWindow))) - { - return true; - } - if (m_logFile) { m_logFile->AppendLog(AzFramework::LogFile::SEV_NORMAL, window, message);