Show the logs for a deployed ShinyApps application.
showLogs(
appPath = getwd(),
appFile = NULL,
appName = NULL,
account = NULL,
server = NULL,
entries = 50,
streaming = FALSE
)
The path to the directory or file that was deployed.
The path to the R source file that contains the application (for single file applications).
The name of the application to show logs for. May be omitted
if only one application deployment was made from appPath
.
The account under which the application was deployed. May be omitted if only one account is registered on the system.
Server name. Required only if you use the same account name on multiple servers.
The number of log entries to show. Defaults to 50 entries.
Whether to stream the logs. If TRUE
, then the
function does not return; instead, log entries are written to the console
as they are made, until R is interrupted. Defaults to FALSE
.