NEWS.md
Changes
mailR
to sendmailR
for sending e-mails, which has fewer dependencies.Bugfixes
Changes
logInfo()
) before any loggers are registered, ParallelLogger
no longer creates a default console logger, but just writes the output to console (except for logTrace()
and logDebug()
). Global handlers will not be registered until a logger is registered explicitly (using registerLogger()
). As a consequence, any warnings about calling global handlers with callers on the stack (when in a try…catch) will not occur until explicitly registering a logger.Changes
Truncating long argument values when a thread throws an error in clusterApply()
to avoid clutter.
Showing warning about being inside a tryCatch
or withCallingHandlers
block only once per R session.
The matchInList()
function now looks for equivalence, not exact match (e.g. a numeric and integer can still be considered the same).
Bugfixes
Changes
loadSettingsFromJson()
.Bugfixes
Fixing extraction of parameter documentation in createArgFunction()
on R >= 4.2.0.
Fixes error when saving and loading tibbles to JSON.
Changes
Using new globalCallingHandlers
functionality introduced in R 4.0.0 to capture warnings, errors and messages. This should be more stable than the legacy code.
All message()
calls are now logged automatically (at the ‘INFO’ level)
Changes
Bugfixes
Changes
Changed dependency from XML to xml2 to avoid trouble installing dependencies.
Allow override of name of default loggers.
Bugfixes
warn
or abort
.Changes
Simplifying argument functions.
Dropping support for ff in favor of Andromeda.
Bugfixes
Fixing missing spaces in argument function documentation.
More gracefully handling unnamed lists when saving and loading from JSON.
Changes
Errors in a cluster are now also logged by the remote thread. This allows for example for the stack trace to be captured. The e-mail logger will only be triggered by events in the main thread to avoid spam.
Added the layoutErrorReport layout.
Added overwrite and expirationTime arguments to createFileAppender.
Added the addDefaultErrorReportLogger function.
Improved stack trace.
Changed names of default loggers to DEFAULT_FILE_LOGGER, DEFAULT_EMAIL_LOGGER, and DEFAULT_ERRORREPORT_LOGGER.
Added ‘silent’ argument to unregisterLogger function.
Bugfixes