| 3 | #include "gtest/gtest.h" |
| 4 | |
| 5 | std::function<std::shared_ptr<Aws::Utils::Logging::LogSystemInterface>()> get_console_logger_factory() |
| 6 | { |
| 7 | return [] { |
| 8 | return Aws::MakeShared<Aws::Utils::Logging::ConsoleLogSystem>( |
| 9 | "console_logger", Aws::Utils::Logging::LogLevel::Warn); |
| 10 | }; |
| 11 | } |
| 12 | |
| 13 | std::string aws_prefix; |
| 14 |