Caprica.VlcSharp.Logger.Trace C# (CSharp) Method

Trace() public static method

public static Trace ( string msg ) : void
msg string
return void
        public static void Trace(string msg, params object[] args)
        {
            if(Level.TRACE.CompareTo(INSTANCE.threshold) <= 0) {
                Log("TRACE", msg, null, args);
            }
        }

Same methods

Logger::Trace ( string msg, Exception t ) : void