refs #315 Removed old/deprecated CRuntime::logSlot, changed contexts to use new CRuntime::logSlot.

Network context was already using new CRuntime::logSlot as of commit:81c68058.
This commit is contained in:
Mathew Sutcliffe
2014-08-18 00:18:04 +01:00
parent 45f23127bb
commit 96ca38a3db
10 changed files with 57 additions and 62 deletions

View File

@@ -190,19 +190,6 @@ namespace BlackCore
//! \threadsafe
bool isSlotLogEnabledFor(LogContext context) const;
//! Slot logging
//! \deprecated Use a brace-initialized QStringList
void logSlot(const char *func, const QString &param, const QString &p2, const QString &p3 = "", const QString &p4 = "") const;
//! Slot logging
void logSlot(const char *func, const QString &param = "") const;
//! Slot logging
void logSlot(const char *func, const QStringList &params) const;
//! Slot logging for bool value
void logSlot(const char *func, bool boolValue) const;
//! Slot logging from a specific context
void logSlot(LogContext ctx, const char *func, const QString &param = "") const;
@@ -352,6 +339,15 @@ namespace BlackCore
//! disconnect log signals (connected via connection to log them)
void disconnectLogSignals(const QString &name);
//! Slot logging
void logSlot(const char *func, const QString &param = "") const;
//! Slot logging
void logSlot(const char *func, const QStringList &params) const;
//! Slot logging for bool value
void logSlot(const char *func, bool boolValue) const;
};
}
#endif // guard