module ShopifyGraphql::RedactJobParams

Private Instance Methods

args_info(job) click to toggle source
Calls superclass method
# File lib/shopify_graphql/engine.rb, line 5
def args_info(job)
  log_disabled_classes = %[
    ShopifyGraphql::CreateWebhooksJob
    ShopifyGraphql::DestroyWebhooksJob
    ShopifyGraphql::UpdateWebhooksJob
  ]
  return "" if log_disabled_classes.include?(job.class.name)
  super
end