Skip to content

Commit efd5018

Browse files
committed
Fix missing semicolon on new log row
1 parent bdf64fb commit efd5018

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Wabbajack.Downloaders.Dispatcher/DownloadDispatcher.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ private async Task<Hash> DownloadFromMirror(Archive archive, AbsolutePath destin
237237
{
238238
try
239239
{
240-
_logger.LogInformation("Downloading {archiveName} from mirror, hash {archiveHash}", archive.Name, archive.Hash)
240+
_logger.LogInformation("Downloading {archiveName} from mirror, hash {archiveHash}", archive.Name, archive.Hash);
241241
var url = _wjClient.GetMirrorUrl(archive.Hash);
242242
if (url == null) return default;
243243

0 commit comments

Comments
 (0)