tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

HLSUtils.h (794B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef HLSUtils_h_
      8 #define HLSUtils_h_
      9 
     10 #include "mozilla/Logging.h"
     11 // Logger
     12 mozilla::LogModule* GetHLSLog();
     13 
     14 #define HLS_DEBUG(TAG, format, ...)              \
     15  MOZ_LOG(GetHLSLog(), mozilla::LogLevel::Debug, \
     16          (TAG "(%p)::%s: " format, this, __func__, ##__VA_ARGS__))
     17 #define HLS_DEBUG_NON_MEMBER(TAG, format, ...)   \
     18  MOZ_LOG(GetHLSLog(), mozilla::LogLevel::Debug, \
     19          (TAG " %s: " format, __func__, ##__VA_ARGS__))
     20 
     21 #endif  // HLSUtils_h_