Hosting and domain costs until October 2024 have been generously sponsored by dumptruck_ds. Thank you!

traceoff

From Quake Wiki

void traceoff()

Usage[edit]

Stops printing the statements the VM is executing to the console. Paired with traceon() to start statement printing.

Example[edit]

// Verify which path the code is executing at a branch
traceon();
if (self.count == 3)
    PerformTask2();
else
    PerformTask();
traceoff();