increase default length of label to 250chars from 100chars

This commit is contained in:
Barret Schloerke
2019-03-01 14:34:21 -05:00
parent 8f37951e14
commit 1f83a6db7b

View File

@@ -511,7 +511,7 @@ MessageLogger = R6Class(
if (identical(force, FALSE) && self$isNotLogging()) return(NULL)
self$reactCache[[reactObj$reactId]] <- reactObj
},
shortenString = function(txt, n = 100) {
shortenString = function(txt, n = 250) {
if (nchar(txt) > n) {
paste0(substr(txt, 1, n - 3), "...")
} else {