Set LogChannel for Slic3r::GUI::Plater

This commit is contained in:
Joseph Lenox 2018-04-29 18:03:13 -05:00 committed by Joseph Lenox
parent 4e74249511
commit 2bb202e2ec
2 changed files with 3 additions and 1 deletions

View File

@ -108,7 +108,7 @@ Plater::Plater(wxWindow* parent, const wxString& title, std::shared_ptr<Settings
}
void Plater::add() {
Log::info("GUI", L"Called Add function");
Log::info(LogChannel, L"Called Add function");
}

View File

@ -52,6 +52,8 @@ private:
Plate2D* canvas2D {};
const std::string LogChannel {"GUI_Plater"}; //< Which log these messages should go to.
};