V8 icon indicating copy to clipboard operation
V8 copied to clipboard

stray 'pre-main prep time: 0 ms' in console

Open kmader opened this issue 10 years ago • 1 comments

For me it comes from using the export_svg function from https://github.com/rich-iannone/DiagrammeRsvg/blob/master/R/export_svg.R and it is printed at the $call( portion before the output

# Create the SVG file
  svg <- 
    ct$call("Viz",
            gv$x$diagram,
            "svg",
            gv$x$config$engine,
            gv$x$config$options)

  return(svg)

It appears to be the same issue as https://github.com/brion/ogv.js/issues/304

kmader avatar Jan 13 '16 00:01 kmader

Simply wrapping this call with invisible() does not suppress this message from printing.

jsta avatar Nov 14 '16 01:11 jsta