set_dittodb_debug_level {dittodb} | R Documentation |
It can be helpful to see what's going on by increasing dittodb's verbosity
which will show what's going on under the hood (e.g. what queries are being
requested, from where). This sets the option dittodb.debug
to the value
given in the level
argument. The option can be set directly with
options(dittodb.debug = n)
as well.
set_dittodb_debug_level(level)
level |
a numeric, the level to set to (e.g. 1) |
The level
argument is a numeric, where 0 is the default and (relatively)
silent. The higher the level, the more verbose dittodb will be.
Currently, dittodb only has one level of debugging (any value 1 or greater), but more might be used in the future.
the level, invisibly
set_dittodb_debug_level(1)
set_dittodb_debug_level(0)