Ext.Net.Debug.Log C# (CSharp) Method

Log() public static method

Show message in console
public static Log ( string text ) : void
text string Log message
return void
        public static void Log(string text)
        {
            new Debug().Call("log", text);
        }