File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 2626 The change in argument name lets this be passed when making a ` daemons() ` call (#344 ).
2727* The ` tls ` argument at ` daemon() ` , ` launch_local() ` and ` launch_remote() ` is deprecated.
2828* ` as.promise() ` method for mirai made robust for high-throughput scenarios (#377 ).
29+ * The print method for a ` miraiError ` now includes the customary additional line break (thanks @sebffischer , #399 ).
2930* A ` mirai() ` evaluated on an ephemeral daemon now returns invisibly, consistent with other cases (#351 ).
3031* Requires nanonext >= [ 1.6.2.9001] .
3132
Original file line number Diff line number Diff line change @@ -559,7 +559,7 @@ print.mirai <- function(x, ...) {
559559# ' @export
560560# '
561561print.miraiError <- function (x , ... ) {
562- cat(sprintf(" 'miraiError' chr %s" , x ), file = stdout())
562+ cat(sprintf(" 'miraiError' chr %s\n " , x ), file = stdout())
563563 invisible (x )
564564}
565565
You can’t perform that action at this time.
0 commit comments