LOG4NET-511 don't signal error by default
diff --git a/src/Appender/AppenderSkeleton.cs b/src/Appender/AppenderSkeleton.cs
index 19e6f03..6f99eda 100644
--- a/src/Appender/AppenderSkeleton.cs
+++ b/src/Appender/AppenderSkeleton.cs
@@ -786,12 +786,12 @@
         	/// Flushes any buffered log data.
         	/// </summary>
 		/// <remarks>
-		/// This implementation doesn't flush anything and always returns false
+		/// This implementation doesn't flush anything and always returns true
 		/// </remarks>
         	/// <returns><c>True</c> if all logging events were flushed successfully, else <c>false</c>.</returns>
         	public virtual bool Flush(int millisecondsTimeout)
         	{
-		    return false;
+		    return true;
         	}
 
 		#region Private Instance Fields