Adds a row to the QC log for the file given with the default reviewer set to "anyone".

logAssign(file, reviewer = "anyone")

Arguments

file

character file path (either the absolute or relative file path from the QC log)

reviewer

specify a specific person to review the file (defaults to "anyone")

Details

The purpose of logAssign() is to indicate a file is ready for QC. This will allow the file to appear on the output of logPending().

Examples

with_demoRepo({
  logAssign(
    file = "script/data-prep.R", 
    reviewer = "person1")
})