BgApiDriver.BgApi.log C# (CSharp) Méthode

log() protected méthode

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