Releases: codedge-llc/scribe
Releases · codedge-llc/scribe
v0.11.0
v0.10.0
v0.9.0
v0.8.2
v0.8.1
v0.8.0
:compile_auto_inspectand:auto_inspectconfig options, both default
to false- Added
Scribe.auto_inspect/1for toggling auto inspect - Added
Scribe.auto_inspect?/0 - Removed
Scribe.enable/0andScribe.disable/0, replaced with above - Removed
Scribe.enabled?/0, replaced with above
To work with production releases, auto-inspect functionality can now be
optionally compiled (not compiled by default). To enable auto-inspect for
your development environment, add this to your config/dev.exs:
config :scribe,
compile_auto_inspect: true,
auto_inspect: true
To temporarily disable auto-inspect in your shell, use
Scribe.auto_inspect(false). Inspect will work as normal until set to
true again.
If auto-inspect is not compiled (or disabled), Scribe.print/2 and similar
functions will continue to work as normal.