diff --git a/ApplicationServices/LibraryCommands.cs b/ApplicationServices/LibraryCommands.cs index 91c0b4d2..da35e4c3 100644 --- a/ApplicationServices/LibraryCommands.cs +++ b/ApplicationServices/LibraryCommands.cs @@ -91,10 +91,11 @@ namespace ApplicationServices var totalCount = importItems.Count; Log.Logger.Information($"GetAllLibraryItems: Total count {totalCount}"); + Log.Logger.Information("Begin long-running import"); logTime($"pre {nameof(importIntoDbAsync)}"); var newCount = await importIntoDbAsync(importItems); logTime($"post {nameof(importIntoDbAsync)}"); - Log.Logger.Information($"Import: New count {newCount}"); + Log.Logger.Information($"Import complete. New count {newCount}"); return (totalCount, newCount); }