BgApiDriver.BgApi.log C# (CSharp) Method

log() protected method

All logging goes through this method for easy overriding.
protected log ( string msg ) : void
msg string The message to log.
return void
        protected virtual void log(string msg)
        {
            Console.WriteLine(msg);
            System.Diagnostics.Debug.Print(msg);
        }
    }
BgApi