From eed160dbe4c722483de6f49ad9fcd1e0758f2a26 Mon Sep 17 00:00:00 2001 From: KojoZero Date: Fri, 13 Mar 2026 20:43:49 -0700 Subject: [PATCH] minor output changes --- src/citra_qt/citra_qt.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/citra_qt/citra_qt.cpp b/src/citra_qt/citra_qt.cpp index 2d48c90c3..769c45d1a 100644 --- a/src/citra_qt/citra_qt.cpp +++ b/src/citra_qt/citra_qt.cpp @@ -346,7 +346,7 @@ GMainWindow::GMainWindow(Core::System& system_) UISettings::values.show_console = true; Debugger::ToggleConsole(); Common::Log::Filter filter; - filter.ParseFilterString("*:Warning"); + filter.ParseFilterString("*:Error"); Common::Log::SetGlobalFilter(filter); i++; for (; i < args.size(); i++){ @@ -371,7 +371,7 @@ GMainWindow::GMainWindow(Core::System& system_) UISettings::values.show_console = true; Debugger::ToggleConsole(); Common::Log::Filter filter; - filter.ParseFilterString("*:Warning"); + filter.ParseFilterString("*:Error"); Common::Log::SetGlobalFilter(filter); i++; for (; i < args.size(); i++){ @@ -3362,7 +3362,7 @@ void GMainWindow::OnCompressFileCLI() { for (const QString& filepath : filepaths) { QFileInfo filepathInfo(filepath); - QTextStream(stdout) << "Compressing " << filepathInfo.fileName() << "\n"; + QTextStream(stdout) << "Compressing \"" << filepathInfo.fileName() << "\"...\n"; std::string in_path = filepath.toStdString(); // Identify file type @@ -3510,7 +3510,7 @@ void GMainWindow::OnDecompressFileCLI() { for (const QString& filepath : filepaths) { QFileInfo filepathInfo(filepath); - QTextStream(stdout) << "Decompressing " << filepathInfo.fileName() << "\n"; + QTextStream(stdout) << "Decompressing \"" << filepathInfo.fileName() << "\"...\n"; std::string in_path = filepath.toStdString(); // Identify file type