Skip to content

Commit

Permalink
Fix logs on download. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
MareMare authored Sep 15, 2022
1 parent d471e22 commit 1905d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SqlDatabaseToolkit/BackupFileStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void Download()
}

ZipFile.ExtractToDirectory(foundFileInfo.FullName, this._options.BackupDirectory, true);
this._logger?.LogInformation("圧縮ファイルをダウンロードしました。{FileName}", zipFileName);
this._logger?.LogInformation("圧縮ファイルをダウンロードしました。{FileName}", foundFileInfo.Name);
}

/// <inheritdoc />
Expand Down

0 comments on commit 1905d5b

Please sign in to comment.