Do not create an exception for debug logging
This commit is contained in:
parent
85b0d7b8d4
commit
ea18d1ca57
|
@ -110,8 +110,7 @@ static inline void debug_window() {
|
|||
|
||||
ImGui::Separator();
|
||||
if (ImGui::Button("Add Log Entry")) {
|
||||
std::exception e;
|
||||
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated via manual button press)", e);
|
||||
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated via manual button press)");
|
||||
}
|
||||
ImGui::SameLine();
|
||||
// returns true when it's pressed
|
||||
|
@ -121,9 +120,8 @@ static inline void debug_window() {
|
|||
if (log_entry_every_second) {
|
||||
log_entry_every_second_delta += ImGui::GetIO().DeltaTime;
|
||||
if (log_entry_every_second_delta >= 1.0f) {
|
||||
std::exception e;
|
||||
log_entry_every_second_delta = 0.0f;
|
||||
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated by add log entry every second)", e);
|
||||
log(std::string("Debug log entry #") + std::to_string(add_log_entry_presses++) + " (activated by add log entry every second)");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue