blob: dec7cef82fa1d48f453cfea2a92b1a3804fe1ae7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/logging/ConsoleLogSystem.h>
#include <iostream>
using namespace Aws::Utils;
using namespace Aws::Utils::Logging;
void ConsoleLogSystem::ProcessFormattedStatement(Aws::String&& statement)
{
std::cout << statement;
}
void ConsoleLogSystem::Flush()
{
std::cout.flush();
}
|