What version of FlowSynx?
1.2.1
Describe the bug
Currently, error messages in the Program.cs are written using synchronous Console.Error.WriteLine, line 115:
Console.Error.WriteLine(ex.Message);
Proposed Change:
- Replace synchronous calls with the asynchronous version:
await Console.Error.WriteLineAsync(ex.Message);