How to Suppress Data Logging

Learn how to suppress the logging of performance data.
try 
{
        Session.getCurrent().getDataManager().setLoggingEnabled(false);
        // warm-up stuff
} 
finally 
{
        Session.getCurrent().getDataManager().setLoggingEnabled(true);
}