CCIMXDesktop
 
Loading...
Searching...
No Matches
DesktopLoggerConvinients.h
1#ifndef DESKTOPLOGGERCONVINIENTS_H
2#define DESKTOPLOGGERCONVINIENTS_H
3class QString;
4
13namespace Logger {
14
20void postDebug(const QString& info);
21
27void postInfo(const QString& info);
28
34void postWarning(const QString& info);
35
41void postError(const QString& info);
42
48void postFatal(const QString& info);
49
50} // namespace Logger
51
52#endif // DESKTOPLOGGERCONVINIENTS_H
Provides thread-safe logging utilities for different severity levels.
void postError(const QString &info)
Log an error message.
Definition DesktopLoggerConvinients.cpp:13
void postInfo(const QString &info)
Log an informational message.
Definition DesktopLoggerConvinients.cpp:7
void postFatal(const QString &info)
Log a fatal error message.
Definition DesktopLoggerConvinients.cpp:16
void postDebug(const QString &info)
Log a debug message.
Definition DesktopLoggerConvinients.cpp:4
void postWarning(const QString &info)
Log a warning message.
Definition DesktopLoggerConvinients.cpp:10