Adf.Base.Logging.FlatFileLogProvider.GetDateForFilename C# (CSharp) Method

GetDateForFilename() private static method

Provides a string with current date in the format yyyyMMdd. Used to create the file name with current date.
private static GetDateForFilename ( ) : string
return string
        private static string GetDateForFilename()
        {
            return DateTime.Today.ToString("yyyyMMdd", CultureInfo.InvariantCulture);
        }