Server.Infrastructure.Log.LogAction C# (CSharp) Method

LogAction() private static method

private static LogAction ( LogLevel level, string message ) : void
level LogLevel
message string
return void
        private static void LogAction(LogLevel level, string message, params Object[] objects)
        {
            if (level >= Level)
            {
                Console.WriteLine("{0} [{1}] {2}", DateTime.Now, level, string.Format(message, objects));
            }
        }