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

Debug() public static method

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

Same methods

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