如何完全忽略带有逻辑操作?

时间:2019-08-12 15:11:19

标签: ruby-on-rails logging ruby-on-rails-6

我想减少我的应用发送到我的日志服务(登录/ loggly / papertrail / splunk等)的GB数量,因为它很昂贵。

我正在尝试 const DeclRefExpr* decl_ref = nullptr; if (auto unary = dyn_cast<UnaryOperator>(expr)) { if (unary->getOpcode() == UnaryOperator::Opcode::UO_AddrOf) { unsigned count = 0; // there will be only one child for (auto child : unary->children()) { decl_ref = dyn_cast<DeclRefExpr>(child); } } } 宝石。我把它放在lograge中:

development.rb

我本以为它将完全从我的MyApp::Application.configure do #... config.lograge.enabled = true config.action_view.logger = nil #... end 标签中删除日志,但是仍然有这些日志并查看日志,我是否缺少某些东西?

0 个答案:

没有答案