mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-04-07 17:21:28 -06:00
minor output changes
This commit is contained in:
parent
dbf39567cf
commit
eed160dbe4
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user