Nothing
#' @title
#' Log system information
#'
#' @description
#' Logs system related information into the log file.
#'
#' @return
#' No return value. This function is called for side effects.
#'
#'@keywords internal
#'
log_system_info <- function() {
# Gather system information
sys_info <- Sys.info()
logger::log_info("System name: {sys_info[1]}, ",
"OS type: {.Platform$OS.type}, ",
"machine architecture: {sys_info[5]}, ",
"user: {sys_info[7]}, ",
"{R.version$version.string}, ",
"detected cores: {parallel::detectCores()[[1]]}")
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.