Skip to content

Commit f1393aa

Browse files
committed
Changed logging level for attachement info errors. #50
1 parent a6a1506 commit f1393aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WorkItemMigrator/JiraExport/JiraProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ private async Task<JiraAttachment> GetAttachmentInfo(string id)
9292
}
9393
catch (Exception ex)
9494
{
95-
Logger.Log(ex, $"Cannot find info for attachment '{id}'. Skipping.");
95+
Logger.Log(LogLevel.Warning, $"Cannot find info for attachment '{id}', skipping. Reason '{ex.Message}'.");
9696
return null;
9797
}
9898
}

0 commit comments

Comments
 (0)