mirror of
https://git.mirrors.martin98.com/https://github.com/prusa3d/PrusaSlicer.git
synced 2025-05-08 22:29:10 +08:00
ConfigWizard: Add additional logging
This commit is contained in:
parent
de0d1f34f3
commit
e9b83a20d0
@ -4,6 +4,8 @@
|
|||||||
#include <utility>
|
#include <utility>
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
|
#include <boost/log/trivial.hpp>
|
||||||
|
|
||||||
#include <wx/settings.h>
|
#include <wx/settings.h>
|
||||||
#include <wx/stattext.h>
|
#include <wx/stattext.h>
|
||||||
#include <wx/textctrl.h>
|
#include <wx/textctrl.h>
|
||||||
@ -741,9 +743,12 @@ void ConfigWizard::priv::apply_config(AppConfig *app_config, PresetBundle *prese
|
|||||||
if (install_bundles.size() > 0) {
|
if (install_bundles.size() > 0) {
|
||||||
// Install bundles from resources.
|
// Install bundles from resources.
|
||||||
updater->install_bundles_rsrc(std::move(install_bundles), snapshot);
|
updater->install_bundles_rsrc(std::move(install_bundles), snapshot);
|
||||||
|
} else {
|
||||||
|
BOOST_LOG_TRIVIAL(info) << "No bundles need to be installed from resources";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (page_welcome->reset_user_profile()) {
|
if (page_welcome->reset_user_profile()) {
|
||||||
|
BOOST_LOG_TRIVIAL(info) << "Resetting user profiles...";
|
||||||
preset_bundle->reset(true);
|
preset_bundle->reset(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -828,10 +833,13 @@ ConfigWizard::~ConfigWizard() {}
|
|||||||
|
|
||||||
bool ConfigWizard::run(PresetBundle *preset_bundle, const PresetUpdater *updater)
|
bool ConfigWizard::run(PresetBundle *preset_bundle, const PresetUpdater *updater)
|
||||||
{
|
{
|
||||||
|
BOOST_LOG_TRIVIAL(info) << "Running ConfigWizard, reason: " << p->run_reason;
|
||||||
if (ShowModal() == wxID_OK) {
|
if (ShowModal() == wxID_OK) {
|
||||||
p->apply_config(GUI::get_app_config(), preset_bundle, updater);
|
p->apply_config(GUI::get_app_config(), preset_bundle, updater);
|
||||||
|
BOOST_LOG_TRIVIAL(info) << "ConfigWizard applied";
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
|
BOOST_LOG_TRIVIAL(info) << "ConfigWizard cancelled";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user