- minimize logging

This commit is contained in:
2026-02-12 17:53:05 +03:00
parent 917156c1cd
commit bb1f92fa31
5 changed files with 161 additions and 6 deletions
+6 -2
View File
@@ -76,7 +76,7 @@ std::string AgentImpl::command(const std::string& command)
return "";
std::string cmd = d["command"].asString();
if (cmd != "wait_for_event")
if (cmd != "wait_for_event" && cmd != "agent_add_root_cert")
{
ICELogInfo(<< command);
}
@@ -98,8 +98,12 @@ std::string AgentImpl::command(const std::string& command)
if (cmd == "account_setuserinfo")
processSetUserInfoToAccount(d, answer);
else
if (cmd == "session_create")
if (cmd == "session_create") {
// For Bugsnag test
// int* v = nullptr;
// *v = 0;
processCreateSession(d, answer);
}
else
if (cmd == "session_start")
processStartSession(d, answer);