Skip to content

Commit 74e626f

Browse files
committed
Demote timing logs in RTTI plugin to debug level
No reason to show this every time you load a binary, if someone feels strongly about seeing this say something!
1 parent 2e4472e commit 74e626f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

plugins/rtti/itanium.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,7 +652,7 @@ void ItaniumRTTIProcessor::ProcessRTTI()
652652

653653
auto end_time = std::chrono::high_resolution_clock::now();
654654
std::chrono::duration<double> elapsed_time = end_time - start_time;
655-
m_logger->LogInfo("ProcessRTTI took %f seconds", elapsed_time.count());
655+
m_logger->LogDebug("ProcessRTTI took %f seconds", elapsed_time.count());
656656
}
657657

658658

@@ -773,5 +773,5 @@ void ItaniumRTTIProcessor::ProcessVFT()
773773

774774
auto end_time = std::chrono::high_resolution_clock::now();
775775
std::chrono::duration<double> elapsed_time = end_time - start_time;
776-
m_logger->LogInfo("ProcessVFT took %f seconds", elapsed_time.count());
776+
m_logger->LogDebug("ProcessVFT took %f seconds", elapsed_time.count());
777777
}

plugins/rtti/microsoft.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,7 +685,7 @@ void MicrosoftRTTIProcessor::ProcessRTTI()
685685

686686
auto end_time = std::chrono::high_resolution_clock::now();
687687
std::chrono::duration<double> elapsed_time = end_time - start_time;
688-
m_logger->LogInfo("ProcessRTTI took %f seconds", elapsed_time.count());
688+
m_logger->LogDebug("ProcessRTTI took %f seconds", elapsed_time.count());
689689
}
690690

691691

@@ -808,5 +808,5 @@ void MicrosoftRTTIProcessor::ProcessVFT()
808808

809809
auto end_time = std::chrono::high_resolution_clock::now();
810810
std::chrono::duration<double> elapsed_time = end_time - start_time;
811-
m_logger->LogInfo("ProcessVFT took %f seconds", elapsed_time.count());
811+
m_logger->LogDebug("ProcessVFT took %f seconds", elapsed_time.count());
812812
}

0 commit comments

Comments
 (0)