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

WarningEvent() public static method

Logs warning events.
public static WarningEvent ( string description ) : void
description string
return void
        public static void WarningEvent(string description)
        {
            try
            {
                WarningEvent(GetCallerName() + "=>" + description, null);
            }
            catch
            {
            }
        }

Same methods

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