Skip to content

Commit a9094a2

Browse files
committed
Add TODO for async logging.
1 parent a39fa36 commit a9094a2

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

PSql.Deploy.Engine/Migrations/MigrationApplicator.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -473,6 +473,7 @@ private async ValueTask CloseLogAsync()
473473
/// </param>
474474
public void Log(string text)
475475
{
476+
// TODO: Consider making this async
476477
Assume.NotNull(_logWriter);
477478

478479
_logWriter.WriteLine(text);

PSql.Deploy.Engine/Seeds/SeedApplicator.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,7 @@ private async ValueTask CloseLogAsync()
515515
/// </param>
516516
public void Log(string text)
517517
{
518+
// TODO: Consider making this async
518519
Assume.NotNull(_logWriter);
519520

520521
_logWriter.WriteLine(text);

0 commit comments

Comments
 (0)