Geoffrey Giesemann
Geoffrey Giesemann
It looks like `semantic_logger` has [SemanticLogger::Appender::NewRelic](https://www.rubydoc.info/gems/semantic_logger/SemanticLogger%2FAppender%2FNewRelic:log) that will notify NewRelic of any logged errors. The actual instrumentation that records the log messages appears to occur in [NewRelic::Agent::Instrumentation::Logger](https://github.com/newrelic/newrelic-ruby-agent/blob/53c545036cf4527ab1138a95a5b0f9418aaa8306/lib/new_relic/agent/instrumentation/logger/instrumentation.rb#L51) where the an...
I had a very similar issue with the following stacktrace: ``` Found 1 error ✖ app/javascript/graphql/types.tsx TypeError: Cannot read property 'value' of undefined at generateQueryKey (~/application/node_modules/@graphql-codegen/typescript-react-query/index.js:29:53) at FetchFetcher.generateQueryHook (~/application/node_modules/@graphql-codegen/typescript-react-query/index.js:213:9) at...
You can specify multiple inputs/output using a colon delimited format: `sass file1.css.scss:file1.css file2.css.scss:file2.css` With multiple files specified this is the same as running `sass --update`. Alternately you can also run...