diff --git a/kit/ChildSession.cpp b/kit/ChildSession.cpp index 66d4792a9a..eb0a4a0363 100644 --- a/kit/ChildSession.cpp +++ b/kit/ChildSession.cpp @@ -3165,6 +3165,11 @@ void ChildSession::loKitCallback(const int type, const std::string& payload) sendTextFrame("a11yselectionchanged: " + payload); break; } + case LOK_CALLBACK_CORE_LOG: + { + sendTextFrame("corelog: " + payload); + break; + } default: LOG_ERR("Unknown callback event (" << lokCallbackTypeToString(type) << "): " << payload); } diff --git a/test/httpwstest.cpp b/test/httpwstest.cpp index 2efb0d69ea..b5a0fb668d 100644 --- a/test/httpwstest.cpp +++ b/test/httpwstest.cpp @@ -268,6 +268,7 @@ void HTTPWSTest::testInactiveClient() // expected. LOK_ASSERT_MESSAGE("unexpected message: " + msg, token == "a11yfocuschanged:" || + token == "corelog:" || token == "cursorvisible:" || token == "graphicselection:" || token == "graphicviewselection:" ||