Recurity.Blitzableiter.Program.PrintLogWarning C# (CSharp) Method

PrintLogWarning() private static method

Event handler for Warning events
private static PrintLogWarning ( object o, LogEventArgs e ) : void
o object The sending object
e Recurity.Swf.LogEventArgs The event arguments as LogEventArgs
return void
        private static void PrintLogWarning(object o, LogEventArgs e)
        {
            Warnings += 1;
            if (Verbose)
            {
                Console.WriteLine(" [Warning #{0:d4}] Location : {1} Reason : {2}", Warnings, o.ToString(), e.Message);
            }
        }