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

Info() public static method

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

Same methods

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