diff --git a/debian/changelog b/debian/changelog index ad70a0007..f1b0321af 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +deepin-terminal (5.9.48) unstable; urgency=medium + + * fix: Changes the default value of the debug mode configuration file. + * fix: Crash when show/close setting dialog. + (#325) (Bug: 28636) + * feat: Debug mode log adaptation + + -- wangcong Tue, 9 Jan 2024 21:18:00 +0800 + deepin-terminal (5.9.47) unstable; urgency=medium * fix: Fixed the issue of high CPU usage due to cursor flickering. diff --git a/src/main/main.cpp b/src/main/main.cpp index f082434a9..a0f9d0b8b 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -46,12 +46,12 @@ int main(int argc, char *argv[]) // 系统日志 #if (DTK_VERSION >= DTK_VERSION_CHECK(5,6,8,0)) - qCDebug(mainprocess) << "current libdtkcore5 > 5.6.8.0"; + //qCDebug(mainprocess) << "current libdtkcore5 > 5.6.8.0"; DLogManager::registerJournalAppender(); - qCInfo(mainprocess) << "Current log register journal!"; + //qCInfo(mainprocess) << "Current log register journal!"; #ifdef QT_DEBUG DLogManager::registerConsoleAppender(); - qCInfo(mainprocess) << "Current log register console!"; + //qCInfo(mainprocess) << "Current log register console!"; #endif #else qCDebug(mainprocess) << "current libdtkcore5 < 5.6.8.0"; @@ -62,7 +62,7 @@ int main(int argc, char *argv[]) #endif #ifdef DTKCORE_CLASS_DConfigFile - qCInfo(mainprocess) << "DConfig is supported by DTK"; + //qCInfo(mainprocess) << "DConfig is supported by DTK"; //日志规则 LoggerRules logRules; logRules.initLoggerRules(); diff --git a/src/main/mainwindow.cpp b/src/main/mainwindow.cpp index 7e8510476..f8f1539d1 100644 --- a/src/main/mainwindow.cpp +++ b/src/main/mainwindow.cpp @@ -1404,7 +1404,7 @@ void MainWindow::showPlugin(const QString &name) if ((name == m_CurrentShowPlugin) && (PLUGIN_TYPE_NONE == m_CurrentShowPlugin)) { // 目前没有列表显示,直接返回 - qCInfo(mainprocess) << "no plugin show!"; + //qCInfo(mainprocess) << "no plugin show!"; return; }