问题
ServiceStack's internal logging isn't something I want to have in my logs. How do we disable the internal logging, or at least suppress it so it doesn't clog the log?
回答1:
When configuring your LogManager just set it to an instance of NullLogFactory
LogManager.LogFactory = new NullLogFactory();
来源:https://stackoverflow.com/questions/18598391/turn-off-servicestack-logging