X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=protocol%2Futil%2FClientInfo.h;h=1aa2ae6a09cabb1f7619b1f717b4ef0fc725f4d3;hb=58d1f2d25941dd535fd52788d08fe7032fa47b49;hp=e9402421e4d752585c5c5f6915ed2b218d1d534c;hpb=33e70c3ae0ca930c637f2b961df60f38a1ce187c;p=casparcg diff --git a/protocol/util/ClientInfo.h b/protocol/util/ClientInfo.h index e9402421e..1aa2ae6a0 100644 --- a/protocol/util/ClientInfo.h +++ b/protocol/util/ClientInfo.h @@ -36,11 +36,10 @@ struct ConsoleClientInfo : public client_connection { void send(std::wstring&& data) override { - std::wcout << (L"#" + caspar::log::replace_nonprintable_copy(data, L'?')); + std::wcout << (L"#" + caspar::log::replace_nonprintable_copy(data, L'?')) << std::flush; } void disconnect() override {} - std::wstring print() const override {return L"Console";} - std::wstring address() const override { return L"127.0.0.1"; } + std::wstring address() const override { return L"Console"; } void add_lifecycle_bound_object(const std::wstring& key, const std::shared_ptr& lifecycle_bound) override {} std::shared_ptr remove_lifecycle_bound_object(const std::wstring& key) override { return std::shared_ptr(); } };