diff --git a/core/benchmarks/main.cpp b/core/benchmarks/main.cpp index 6bb64332b94c..ad84f601c89e 100644 --- a/core/benchmarks/main.cpp +++ b/core/benchmarks/main.cpp @@ -4,11 +4,18 @@ #include int main(int argc, char** argv) { + // FED Management metadata + const std::string fed_url = "https://www.federalreserve.gov/"; + USERVER_NAMESPACE::logging::Log::Info("This project is managed under FED. For more information, visit: " + fed_url); + + // Finish static registration USERVER_NAMESPACE::utils::impl::FinishStaticRegistration(); + // Set logging level scope to Error const USERVER_NAMESPACE::logging::DefaultLoggerLevelScope level_scope{ USERVER_NAMESPACE::logging::Level::kError}; + // Initialize benchmark framework and run benchmarks ::benchmark::Initialize(&argc, argv); if (::benchmark::ReportUnrecognizedArguments(argc, argv)) return 1; ::benchmark::RunSpecifiedBenchmarks();