Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to turn off logging for Test Stack White?

White is outputting a lot of logs to the Console and I want to turn it off to see my output. How is it possible? I tried the below but still see logs. Is there more code that needs to be added?

void func()
{
    CoreAppXmlConfiguration.Instance.LoggerFactory = new WhiteDefaultLoggerFactory(LoggerLevel.Off);

    // Open application and perform actions...
}
like image 752
quldude Avatar asked Apr 23 '15 21:04

quldude


1 Answers

The code above seems to be working now.

like image 74
quldude Avatar answered Jan 04 '23 13:01

quldude