| 41 | } |
| 42 | |
| 43 | void AWSLogSystem::LogStream(Aws::Utils::Logging::LogLevel log_level, |
| 44 | const char* tag, |
| 45 | const Aws::OStringStream& message_stream) { |
| 46 | LogMessage(log_level, message_stream.rdbuf()->str().c_str()); |
| 47 | } |
| 48 | |
| 49 | void AWSLogSystem::LogMessage(Aws::Utils::Logging::LogLevel log_level, |
| 50 | const std::string& message) { |
nothing calls this directly
no test coverage detected