BSky.Statistics.Common.Log.DebugInfo C# (CSharp) Method

DebugInfo() public static method

Logs debugging events.
public static DebugInfo ( string description ) : void
description string
return void
        public static void DebugInfo(string description)
        {
            try
            {

                WriteEvent(System.Diagnostics.TraceEventType.Verbose, 0, GetCallerName() + "=>" + description);
            }
            catch
            {
            }
        }

Same methods

Log::DebugInfo ( string description, Exception exception ) : void