diff --git a/.docs/Using-the-GUI.md b/.docs/Using-the-GUI.md index 2b2b6bfe..684f629e 100644 --- a/.docs/Using-the-GUI.md +++ b/.docs/Using-the-GUI.md @@ -103,7 +103,7 @@ Default: 1 - **Normalize to UTC** - Convert all dates to UTC before exporting. -- **Export exists** Controls what the exporter should do if the current channel had previously been exported. +- **Export exists** - Controls what the exporter should do if the current channel had previously been exported. Default: Abort - **Search for existing export** Whether the exporter should search in the entire target directory to determine whether diff --git a/DiscordChatExporter.Core/Exporting/Logging/ProgressLogger.cs b/DiscordChatExporter.Core/Exporting/Logging/ProgressLogger.cs index 817f2306..bc91516d 100644 --- a/DiscordChatExporter.Core/Exporting/Logging/ProgressLogger.cs +++ b/DiscordChatExporter.Core/Exporting/Logging/ProgressLogger.cs @@ -52,7 +52,7 @@ public abstract class ProgressLogger + $" {updateExportSuccessCount} existing channel export(s)."; if (updateExportSkipCount > 0) exportSummary[ExportResult.UpdateExportSkip] = - $"Skipped {updateExportSkipCount} existing up-to-date channel export(s)"; + $"Skipped {updateExportSkipCount} existing up-to-date channel export(s)."; if (exportErrorCount > 0) exportSummary[ExportResult.ExportError] = $"Failed to export {exportErrorCount} channel(s) (see prior error message(s))."; @@ -99,7 +99,7 @@ public abstract class ProgressLogger /// Logs an error message about the current channel export. /// If this is called, the count of channels that failed is automatically increased. /// - /// The request specifying the current channel export. + /// The request specifying the current channel export, if it can be accessed. /// The error message about the current channel export that should be logged. - public abstract void LogError(ExportRequest request, string message); + public abstract void LogError(ExportRequest? request, string message); }