Skip to content

Commit

Permalink
Merge pull request #78 from alexholcombe/patch-13
Browse files Browse the repository at this point in the history
Record message for usage tracking. While we use Matomo for detailed usage tracking this still can be useful in the future.
  • Loading branch information
marton-balazs-kovacs authored Apr 20, 2023
2 parents 33566c3 + d05fca9 commit ac32250
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion R/mod_read_spreadsheet.R
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,8 @@ mod_read_spreadsheet_server <- function(id) {
list(error = read_output$error[["message"]],
warning = ""))
return(NULL)
} else {
} else { #have successfully read the file or Google Sheet
message("File or Google Sheet has been uploaded.") #Print message for logfile so we know when people have uploaded a contributor table
return(read_output$result)
}
})
Expand Down

0 comments on commit ac32250

Please sign in to comment.