标签: servicestack
如何关闭SQL日志记录?
我已经像这样注册了NLOG:
LogManager.LogFactory = new NLogFactory(); SetConfig(new HostConfig { AddRedirectParamsToQueryString = true, DebugMode = false });
正在编写SQL来登录生产,我想将其关闭。我在PostgreSQL上使用ORMLite我该怎么做?
答案 0 :(得分:1)
OrmLite使用已配置的记录器在Debug日志级别记录SQL,因此您需要disable the Debug log level in NLog。
Debug