get_check_status {packager} | R Documentation |
Retrieve Check Status From a Log File
Description
Searches a typical R CMD check
like ‘xxx.Rcheck/00check.log’
for Errors, Warnings and Notes.
Usage
get_check_status(path)
Arguments
path |
Path to the log file. |
Value
A list :
- status
A list of
- notes
The number of
NOTE
s- warnings
The number of
WARNING
s- error
The number of
ERROR
s
- log
A list of
- notes
The log entries for
NOTE
s- warnings
The log entries for
WARNING
s- error
The log entries for
ERROR
s
See Also
Other maintenance functions:
check_archive()
,
check_codetags()
,
check_cyclomatic_complexity()
,
check_news()
,
check_usage()
[Package packager version 1.15.3 Index]