powered by
Removes tracing from all function calls in a package that were previously traced by trace_package().
trace_package()
untrace_package(pkg)
No return value, called for side effects
Package name to untrace.
This function reverses the effects of trace_package by removing all tracing from the specified package's functions.
trace_package
if (FALSE) { local({ trace_package("graphics", funign = "plot.default") on.exit(untrace_package("graphics"), add = TRUE) plot(1:10) }) }
Run the code above in your browser using DataLab