#' logger_source_fails
#'
#' Get a quick list of all the missing parameters in the source code, from a log test
#' @param df The log data frame (could be Android or iOS)
#' @param event The event name, i.e. 'payment_confirm'
#' @export
logger_source_fails <- function(df,event) {
require(tidyverse)
x <- df %>%
filter(event_name == event) %>%
quick_pull('test_source_fails')
return(x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.