set_verbosity | R Documentation |
Set and get the global verbosity level.
set_verbosity(level = 2L)
get_verbosity()
level |
A scalar (integer vector of length one),
possibly |
Messages are generated, accordingly to the following levels:
None.
Operations modifying the internal state.
All operations.
+Inf
.Debugging informations.
define
, make
, reset
, and
touch
.
reset()
set_verbosity(+Inf)
define("foo", NULL, function() "Hello World")
define("bar", list(f = "foo"), function(f) sprintf("*%s*", f))
make()
touch("foo")
make("bar")
reset()
set_verbosity(2)
define("foo", NULL, function() "Hello World")
define("bar", list(f = "foo"), function(f) sprintf("*%s*", f))
make()
touch("foo")
make("bar")
reset()
set_verbosity(1L)
define("foo", NULL, function() "Hello World")
define("bar", list(f = "foo"), function(f) sprintf("*%s*", f))
make()
touch("foo")
make("bar")
reset()
set_verbosity(0L)
define("foo", NULL, function() "Hello World")
define("bar", list(f = "foo"), function(f) sprintf("*%s*", f))
make()
touch("foo")
make("bar")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.