- fix logging - too much different subsystem names were used

This commit is contained in:
2026-03-09 15:27:55 +03:00
parent e07654e2bc
commit 06e8bf0b5d
38 changed files with 40 additions and 42 deletions

View File

@@ -10,7 +10,7 @@
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
AuthTransaction::AuthTransaction()
:Transaction(), mActive(false), mComposed(false), mConformsToKeepaliveSchedule(true),

View File

@@ -10,7 +10,7 @@
#include <memory>
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
//----------------------- AuthClientBinding -----------------

View File

@@ -8,7 +8,7 @@
#include <assert.h>
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
using namespace ice;

View File

@@ -9,7 +9,7 @@
#include <stdio.h>
#include <string.h>
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
using namespace ice;

View File

@@ -11,7 +11,7 @@
#include <stdio.h>
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
CandidatePair::CandidatePair()
:mPriority(0), mState(CandidatePair::Frozen), mControlledIndex(0), mControllingIndex(1),
mNomination(Nomination_None), mRole(Regular), mTransaction(NULL)

View File

@@ -13,7 +13,7 @@
#include <sstream>
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
const char* CheckList::stateToString(int state)
{

View File

@@ -38,7 +38,7 @@
#include "ICEError.h"
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
#if defined(TARGET_WIN) && !defined(WINDOWS_RT)
class IPHlpApi

View File

@@ -14,7 +14,7 @@
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
// ------------------ ClientAllocate -----------------
ClientAllocate::ClientAllocate(unsigned int lifetime)

View File

@@ -28,7 +28,7 @@
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
Session::Session()

View File

@@ -18,7 +18,7 @@
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
const char* ice::RunningStateToString(RunningState state)
{

View File

@@ -24,7 +24,7 @@
#define STUN_HEADER_SIZE 20
#define HMAC_DIGEST_SIZE 20
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
using namespace ice;

View File

@@ -17,7 +17,7 @@
#include <assert.h>
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
const char* Transaction::stateToString(State state)
{

View File

@@ -9,7 +9,7 @@
using namespace ice;
#define LOG_SUBSYSTEM "ICE"
#define LOG_SUBSYSTEM "ice"
TransactionList::TransactionList()
:mRegularIndex(0), mPrioritizedIndex(0)