Skip to content

Commit 25a6d0d

Browse files
committed
fixed a typo as mentioned in pr#33
1 parent 6466922 commit 25a6d0d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/EntityFrameworkCore.DataEncryption/Migration/EncryptionMigrator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public static async Task MigrateAsync(this DbContext context, IProperty property
8888
var set = context.Set(property.DeclaringEntityType);
8989
var list = await set.ToListAsync(cancellationToken);
9090

91-
logger?.LogInformation("Migrating data for {EntityType} :: {Property}} ({RecordCount} records)...",
91+
logger?.LogInformation("Migrating data for {EntityType} :: {Property} ({RecordCount} records)...",
9292
property.DeclaringEntityType.Name, property.Name, list.Count);
9393

9494
foreach (var entity in list)

0 commit comments

Comments
 (0)