Use ukui-log4qt instead of message handler module

This commit is contained in:
andrew-wuhan-huawei-990-pc 2021-04-19 20:48:41 +08:00
parent 82e74f4c6c
commit 87e4f4d02f
5 changed files with 14 additions and 3 deletions

3
debian/control vendored
View File

@ -17,7 +17,8 @@ Build-Depends: debhelper (>=9.0.0),
libgsettings-qt-dev, libgsettings-qt-dev,
libqt5x11extras5-dev, libqt5x11extras5-dev,
libuchardet-dev, libuchardet-dev,
libpoppler-qt5-dev libpoppler-qt5-dev,
libukui-log4qt-dev
Standards-Version: 4.5.0 Standards-Version: 4.5.0
Homepage: https://www.ukui.org/ Homepage: https://www.ukui.org/
Vcs-Git: https://github.com/ukui/ukui-search.git Vcs-Git: https://github.com/ukui/ukui-search.git

View File

@ -29,6 +29,7 @@
#include <QLocale> #include <QLocale>
#include <X11/Xlib.h> #include <X11/Xlib.h>
#include <syslog.h> #include <syslog.h>
#include <ukui-log4qt.h>
#include <QObject> #include <QObject>
#include "qt-single-application.h" #include "qt-single-application.h"
#include "qt-local-peer.h" #include "qt-local-peer.h"
@ -120,6 +121,9 @@ void centerToScreen(QWidget* widget) {
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
//Init log module
initUkuiLog4qt("ukui-search");
// Determine whether the home directory has been created, and if not, keep waiting. // Determine whether the home directory has been created, and if not, keep waiting.
char *p_home = NULL; char *p_home = NULL;
@ -146,7 +150,7 @@ int main(int argc, char *argv[])
} }
// Output log to file // Output log to file
qInstallMessageHandler(messageOutput); // qInstallMessageHandler(messageOutput);
// Register meta type // Register meta type
qDebug() << "ukui-search main start"; qDebug() << "ukui-search main start";

View File

@ -9,6 +9,7 @@ TEMPLATE = app
PKGCONFIG += gio-2.0 glib-2.0 gio-unix-2.0 PKGCONFIG += gio-2.0 glib-2.0 gio-unix-2.0
CONFIG += c++11 link_pkgconfig no_keywords lrelease CONFIG += c++11 link_pkgconfig no_keywords lrelease
LIBS += -lxapian -lgsettings-qt -lquazip5 -lX11 LIBS += -lxapian -lgsettings-qt -lquazip5 -lX11
LIBS += -lukui-log4qt
# The following define makes your compiler emit warnings if you use # The following define makes your compiler emit warnings if you use
# any Qt feature that has been marked deprecated (the exact warnings # any Qt feature that has been marked deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the # depend on your compiler). Please consult the documentation of the

View File

@ -20,13 +20,16 @@
#include <QCoreApplication> #include <QCoreApplication>
#include <QDBusConnection> #include <QDBusConnection>
#include <QDBusError> #include <QDBusError>
#include <ukui-log4qt.h>
#include <QDebug> #include <QDebug>
#include "sysdbusregister.h" #include "sysdbusregister.h"
int main(int argc, char *argv[]){ int main(int argc, char *argv[]){
//init log module
initUkuiLog4qt("ukui-search-service");
QCoreApplication app(argc, argv); QCoreApplication app(argc, argv);
app.setOrganizationName("Kylin Team"); app.setOrganizationName("Kylin Team");
app.setApplicationName("ukui-search-service"); app.setApplicationName("ukui-search-service");

View File

@ -9,6 +9,8 @@ TEMPLATE = app
CONFIG += console c++11 link_pkgconfig CONFIG += console c++11 link_pkgconfig
CONFIG -= app_bundle CONFIG -= app_bundle
LIBS += -lukui-log4qt
DESTDIR = . DESTDIR = .
INCLUDEPATH += . INCLUDEPATH += .