Skip to content

Commit

Permalink
Record message for usage tracking
Browse files Browse the repository at this point in the history
Resolve [issue 77](#77) (usage tracking) by printing message to log file when user uploads contributor table.
alexholcombe authored Jun 21, 2022

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
1 parent f86214b commit d05fca9
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
@@ -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)
}
})

0 comments on commit d05fca9

Please sign in to comment.