CSL.NetworkExtensions.Framework.Debug.Log C# (CSharp) Метод

Log() публичный статический Метод

public static Log ( ) : void
Результат void
        public static void Log(params System.Object[] o)
        {
            Message(o);
        }

Usage Example

Пример #1
0
        protected override void Install()
        {
            if (Done) // Only one Assets installation throughout the application
            {
                return;
            }

            foreach (var action in AssetManager.instance.CreateLoadingSequence(Mod.GetPath()))
            {
                var localAction = action;

                Loading.QueueAction(() =>
                {
                    try
                    {
                        localAction();
                    }
                    catch (Exception ex)
                    {
                        Debug.Log("REx: Crashed-AssetsInstaller");
                        Debug.Log("REx: " + ex.Message);
                        Debug.Log("REx: " + ex.ToString());
                    }
                });
            }

            Done = true;
        }
All Usage Examples Of CSL.NetworkExtensions.Framework.Debug::Log