10 #ifndef GUARD_LOGMSG_H_INCLUDE
11 #define GUARD_LOGMSG_H_INCLUDE
13 #include <usermsg/usermsg-config.h>
29 const QString & s_message) {
30 msg (UserMsgEntry::UTERROR, s_message);
36 const QString & s_message) {
37 msg (UserMsgEntry::UTWARNING, s_message);
43 const QString & s_message) {
44 msg (UserMsgEntry::UTINFO, s_message);
50 const QString & s_message) {
51 msg (UserMsgEntry::UTDBG_ERROR, s_message);
57 const QString & s_message) {
58 msg (UserMsgEntry::UTDBG_ERROR, s_message);
64 const QString & s_message) {
65 msg (UserMsgEntry::UTDBG_INFO, s_message);
72 const QString & s_message);
76 #endif // GUARD_LOGMSG_H_INCLUDE
Declarations for UserMsgEntry class.
static void info(const QString &s_message)
Show an informative entry.
Definition: logmsg.h:42
static void dbgErr(const QString &s_message)
Show an error entry.
Definition: logmsg.h:49
static void dbgWar(const QString &s_message)
Show a warning entry.
Definition: logmsg.h:56
static void err(const QString &s_message)
Show an error entry.
Definition: logmsg.h:28
Type
kind of the message
Definition: usermsgentry.h:24
static void dbgInfo(const QString &s_message)
Show an informative entry.
Definition: logmsg.h:63
Log messages.
Definition: logmsg.h:21
static void war(const QString &s_message)
Show a warning entry.
Definition: logmsg.h:35