blob: 5875ead9c01f6ed54852247afe74708ef1fa8d52 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#include <aws/core/utils/logging/CRTLogging.h>
#include <aws/common/logging.h>
#include <memory>
using namespace Aws::Utils;
using namespace Aws::Utils::Logging;
namespace Aws
{
namespace Utils
{
namespace Logging {
static std::shared_ptr<CRTLogSystemInterface> CRTLogSystem(nullptr);
void InitializeCRTLogging(const std::shared_ptr<CRTLogSystemInterface>& crtLogSystem) {
CRTLogSystem = crtLogSystem;
}
void ShutdownCRTLogging() {
CRTLogSystem = nullptr;
}
} // namespace Logging
} // namespace Utils
} // namespace Aws
|