diff --git a/src/WorkItemMigrator/JiraExport/JiraProvider.cs b/src/WorkItemMigrator/JiraExport/JiraProvider.cs index cee7ccf3..38d571f3 100644 --- a/src/WorkItemMigrator/JiraExport/JiraProvider.cs +++ b/src/WorkItemMigrator/JiraExport/JiraProvider.cs @@ -375,8 +375,15 @@ public string GetUserEmail(string usernameOrAccountId) { Logger.Log(LogLevel.Warning, Settings.UsingJiraCloud - ? $"Email is not public for user '{usernameOrAccountId}' in Jira, using usernameOrAccountId '{usernameOrAccountId}' for mapping." - : $"Email for user '{usernameOrAccountId}' not found in Jira, using username '{usernameOrAccountId}' for mapping."); + ? $"Email is not public for user '{usernameOrAccountId}' in Jira," + + $" using usernameOrAccountId '{usernameOrAccountId}' for mapping." + + $" You may safely ignore this warning, unless there is a subsequent warning about" + + $" the username/accountId being missing in the usermapping file." + + : $"Email for user '{usernameOrAccountId}' not found in Jira," + + $" using username '{usernameOrAccountId}' for mapping." + + $" You may safely ignore this warning, unless there is a subsequent warning about" + + $" the username/accountId being missing in the usermapping file." + + ); } email = isUserEmailMissing ? usernameOrAccountId : user.Email; _userEmailCache.Add(usernameOrAccountId, email);