/// <inheritdoc/> public Task <bool> CreatePullRequest(string org, string repository, string target, string source, string title) { try { return(_decoratedService.CreatePullRequest(org, repository, target, source, title)); } catch (Exception ex) { LogError(ex, "CreatePullRequest", org, repository); throw; } }