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

GetDateForMessage() private static method

Provides a string having current date in a format yyyy-MM-dd HH:mm:ss. Use the current date time for writing message in log file.
private static GetDateForMessage ( ) : string
return string
        private static string GetDateForMessage()
        {
            return DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);
        }