Amazon.Runtime.Internal.Util.UnityDebugLogger.Debug C# (CSharp) Метод

Debug() публичный Метод

public Debug ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
Результат void
        public override void Debug(Exception exception, string messageFormat, params object[] args)
        {
            if (exception != null)
                UnityEngine.Debug.LogException(exception);

            if (!string.IsNullOrEmpty(messageFormat))
                UnityEngine.Debug.Log(string.Format(messageFormat, args));
        }