/// <summary>
 /// Emits verbose logs for bytes read from and written to the connection.
 /// </summary>
 /// <returns>
 /// The <see cref="ListenOptions"/>.
 /// </returns>
 public static ListenOptions UseConnectionLogging(this ListenOptions listenOptions)
 {
     return(listenOptions.UseConnectionLogging(loggerName: null));
 }
 /// <summary>
 /// Emits verbose logs for bytes read from and written to the connection.
 /// </summary>
 /// <returns>
 /// The <see cref="ListenOptions"/>.
 /// </returns>
 public static ListenOptions UseConnectionLogging(this ListenOptions listenOptions)
 {
     return(listenOptions.UseConnectionLogging(nameof(LoggingConnectionAdapter)));
 }