Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion obs-studio-server/source/callback-manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ void CallbackManager::GlobalQuery(void *data, const int64_t id, const std::vecto
obs_data_t *msg = obs_data_array_item(messages, idx);
rval.push_back(ipc::value(obs_source_get_name(si->source)));
rval.push_back(ipc::value(obs_data_get_string(msg, "message")));
blog(LOG_INFO, "[BrowserMessage] %s message: %s", obs_source_get_name(si->source), obs_data_get_string(msg, "message"));
blog(LOG_INFO, "[osn-source] %s message: %s", obs_source_get_name(si->source), obs_data_get_string(msg, "message"));
size++;
}
obs_data_array_release(messages);
Expand Down
4 changes: 2 additions & 2 deletions obs-studio-server/source/osn-source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ void osn::Source::GetSettings(void *data, const int64_t id, const std::vector<ip

void osn::Source::Update(void *data, const int64_t id, const std::vector<ipc::value> &args, std::vector<ipc::value> &rval)
{
blog(LOG_INFO, "[BrowserMessage] Update called with source id: %llu, %s", args[0].value_union.ui64, args[1].value_str.c_str());
blog(LOG_INFO, "[osn-source] Update called with source id: %llu, %s", args[0].value_union.ui64, args[1].value_str.c_str());
// Attempt to find the source asked to load.
obs_source_t *src = osn::Source::Manager::GetInstance().find(args[0].value_union.ui64);
if (src == nullptr) {
Expand Down Expand Up @@ -502,7 +502,7 @@ void osn::Source::GetId(void *data, const int64_t id, const std::vector<ipc::val

void osn::Source::SendMessage(void *data, const int64_t id, const std::vector<ipc::value> &args, std::vector<ipc::value> &rval)
{
blog(LOG_INFO, "[BrowserMessage] SendMessage called with source id: %llu, %s", args[0].value_union.ui64, args[1].value_str.c_str());
blog(LOG_INFO, "[osn-source] SendMessage called with source id: %llu, %s", args[0].value_union.ui64, args[1].value_str.c_str());
// Attempt to find the source asked to load.
obs_source_t *src = osn::Source::Manager::GetInstance().find(args[0].value_union.ui64);
if (src == nullptr) {
Expand Down
Loading