Update MessageReceiver.cs
Some checks are pending
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run

This commit is contained in:
Namhyeon Go 2024-08-20 19:37:10 +09:00
parent f6bbc31551
commit fe31fd2c97

View File

@ -90,7 +90,7 @@ namespace WelsonJS.Service
while (await call.ResponseStream.MoveNext())
{
var response = call.ResponseStream.Current;
parent.Log($"Message received: {response.Message}");
parent.Log($"< {response.Message}");
// dispatch to the script runtime
parent.DispatchServiceEvent("messageReceived", new string[] { response.Message });