logger.start {RnBeads} | R Documentation |
Functions for logger management.
logger.start(txt = character(0), fname = NULL) logger.completed() logger.close()
txt |
Description to add to the log file. The words |
fname |
Name of the log file and/or console. Note that at most one file name can be specified. The function
|
None (invisible NULL
).
logger.start
initializes the logger and/or starts a new section. logger.completed
completes the last
(innermost) open section in the log. logger.close
deinitializes the logger. Note that after reinitialization
or deinitialization, the information about the current output file, as well as any open sections, is deleted.
Yassen Assenov
logger.isinitialized
if (!logger.isinitialized()) logger.start(fname = NA) logger.start("Tests for Significance") logger.completed() logger.close()