R/utility_functions.R

Defines functions print_time_status

################################################################################
# Utility Functions
################################################################################

# Print a message with timestamp to screen
print_time_status <- function(message){
    cat(
        paste0(
            Sys.time(), "\t",
            message, "\n"
        )
    )
}
dclaz/mELO documentation built on May 17, 2021, 2:27 a.m.