Terraria.TimeLogger.Start C# (CSharp) Method

Start() public static method

public static Start ( ) : void
return void
        public static void Start()
        {
            if (TimeLogger.currentlyLogging)
            {
                TimeLogger.endLoggingThisFrame = true;
                TimeLogger.startLoggingNextFrame = false;
            }
            else
            {
                TimeLogger.startLoggingNextFrame = true;
                TimeLogger.endLoggingThisFrame = false;
                Main.NewText("Detailed logging started", (byte)250, (byte)250, (byte)0, false);
            }
        }