Set or append comments in the master_startup data frame
set_comments.Rd
This function updates the 'comment' field of the specified row in the master_startup data frame. If a non-empty logger comment is provided, it will be set as the comment if no existing comment is present. If an existing comment is present, the logger comment will be appended to it, separated by " | ".
Examples
if (FALSE) { # \dontrun{
master_startup <- data.frame(comment = c("", "Existing comment"))
set_comments(master_startup, 1, "New logger comment")
set_comments(master_startup, 2, "Another logger comment")
} # }