/// <summary>
 /// Logs an error message with the data of the <see cref="FtpResponse"/>
 /// </summary>
 /// <param name="log">The <see cref="IFtpLog"/> to use</param>
 /// <param name="response">The <see cref="FtpResponse"/> to log</param>
 public static void Error([NotNull] this IFtpLog log, [NotNull] FtpResponse response)
 {
     log.Error("{0}", response);
 }