我有一个MyLogger类,它将处理所有日志记录活动。因此,我尝试使用此example
所以我的来源是:
MyLogger::MyLogger(QWidget *parent) :
QDialog(parent),
ui(new Ui::MyLogger)
{
ui->setupUi(this);
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
qInstallMessageHandler(myMessageOutput);
#else
qInstallMsgHandler(myMessageOutput);
#endif
}
#if QT_VERSION >= QT_VERSION_CHECK(5, 0, 0)
void myMessageOutput(QtMsgType type, const QMessageLogContext &, const QString & str)
{
const char * msg = str.toStdString().c_str();
#else
void myMessageOutput(QtMsgType type, const char *msg)
{
#endif
switch (type)
{
case QtDebugMsg:
fprintf(stderr, "Debug: %s\n", msg);
break;
case QtWarningMsg:
fprintf(stderr, "Warning: %s\n", msg);
break;
case QtCriticalMsg:
fprintf(stderr, "Critical: %s\n", msg);
break;
case QtFatalMsg:
fprintf(stderr, "Fatal: %s\n", msg);
abort();
}
}
但是然后我得到一个:
错误:在此范围内未声明“ myMessageOutput”
qInstallMessageHandler(myMessageOutput);
最佳答案
您可以将myMessageOutput()
移到MyLogger::MyLogger()
之前,或者在此之前使用单独的声明。