mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-06-04 06:05:00 -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;
|
UISettings::values.show_console = true;
|
||||||
Debugger::ToggleConsole();
|
Debugger::ToggleConsole();
|
||||||
Common::Log::Filter filter;
|
Common::Log::Filter filter;
|
||||||
filter.ParseFilterString("*:Warning");
|
filter.ParseFilterString("*:Error");
|
||||||
Common::Log::SetGlobalFilter(filter);
|
Common::Log::SetGlobalFilter(filter);
|
||||||
i++;
|
i++;
|
||||||
for (; i < args.size(); i++){
|
for (; i < args.size(); i++){
|
||||||
@ -371,7 +371,7 @@ GMainWindow::GMainWindow(Core::System& system_)
|
|||||||
UISettings::values.show_console = true;
|
UISettings::values.show_console = true;
|
||||||
Debugger::ToggleConsole();
|
Debugger::ToggleConsole();
|
||||||
Common::Log::Filter filter;
|
Common::Log::Filter filter;
|
||||||
filter.ParseFilterString("*:Warning");
|
filter.ParseFilterString("*:Error");
|
||||||
Common::Log::SetGlobalFilter(filter);
|
Common::Log::SetGlobalFilter(filter);
|
||||||
i++;
|
i++;
|
||||||
for (; i < args.size(); i++){
|
for (; i < args.size(); i++){
|
||||||
@ -3362,7 +3362,7 @@ void GMainWindow::OnCompressFileCLI() {
|
|||||||
|
|
||||||
for (const QString& filepath : filepaths) {
|
for (const QString& filepath : filepaths) {
|
||||||
QFileInfo filepathInfo(filepath);
|
QFileInfo filepathInfo(filepath);
|
||||||
QTextStream(stdout) << "Compressing " << filepathInfo.fileName() << "\n";
|
QTextStream(stdout) << "Compressing \"" << filepathInfo.fileName() << "\"...\n";
|
||||||
std::string in_path = filepath.toStdString();
|
std::string in_path = filepath.toStdString();
|
||||||
|
|
||||||
// Identify file type
|
// Identify file type
|
||||||
@ -3510,7 +3510,7 @@ void GMainWindow::OnDecompressFileCLI() {
|
|||||||
|
|
||||||
for (const QString& filepath : filepaths) {
|
for (const QString& filepath : filepaths) {
|
||||||
QFileInfo filepathInfo(filepath);
|
QFileInfo filepathInfo(filepath);
|
||||||
QTextStream(stdout) << "Decompressing " << filepathInfo.fileName() << "\n";
|
QTextStream(stdout) << "Decompressing \"" << filepathInfo.fileName() << "\"...\n";
|
||||||
std::string in_path = filepath.toStdString();
|
std::string in_path = filepath.toStdString();
|
||||||
|
|
||||||
// Identify file type
|
// Identify file type
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user