Amazon.Runtime.Internal.Util.UnityDebugLogger.DebugFormat C# (CSharp) Méthode

DebugFormat() public méthode

public DebugFormat ( string messageFormat ) : void
messageFormat string
Résultat void
        public override void DebugFormat(string messageFormat, params object[] args)
        {
            if (!string.IsNullOrEmpty(messageFormat))
                UnityEngine.Debug.Log(string.Format(messageFormat, args));
        }