Loading [MathJax]/extensions/tex2jax.js
azure-identity
All Classes Files Functions Variables Typedefs Pages
identity_log.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/internal/diagnostics/log.hpp>
7
8namespace Azure { namespace Identity { namespace _detail {
9
10 class IdentityLog final {
11 public:
12 using Level = Core::Diagnostics::Logger::Level;
13
14 static void Write(Level level, std::string const& message)
15 {
16 Core::Diagnostics::_internal::Log::Write(level, "Identity: " + message);
17 }
18
19 static bool ShouldWrite(Level level)
20 {
21 return Core::Diagnostics::_internal::Log::ShouldWrite(level);
22 }
23
24 private:
25 IdentityLog() = delete;
26 ~IdentityLog() = delete;
27 };
28
29}}} // namespace Azure::Identity::_detail