How to Suppress Data Logging
How to suppress logging of performance data.
try
{
Session.getCurrent().getDataManager().setLoggingEnabled(false);
// warm-up stuff
}
finally
{
Session.getCurrent().getDataManager().setLoggingEnabled(true);
}
Last modified March 4, 2022