Skip to content

Replace Console.Error.WriteLine with WriteLineAsync in Program.cs #535

@ziagham

Description

@ziagham

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);

Metadata

Metadata

Assignees

No one assigned

    Labels

    C#C# related codebugSomething isn't workingenhancementNew feature or requestgood first issueGood for newcomershelp wantedExtra attention is needed

    Type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions