6#include <azure/core/internal/diagnostics/log.hpp> 
    8namespace Azure { 
namespace Identity { 
namespace _detail {
 
   10  class IdentityLog final {
 
   12    using Level = Core::Diagnostics::Logger::Level;
 
   14    static void Write(Level level, std::string 
const& message)
 
   16      Core::Diagnostics::_internal::Log::Write(level, 
"Identity: " + message);
 
   19    static bool ShouldWrite(Level level)
 
   21      return Core::Diagnostics::_internal::Log::ShouldWrite(level);
 
   25    IdentityLog() = 
delete;
 
   26    ~IdentityLog() = 
delete;