File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1+ from __future__ import absolute_import
2+
13from importlib import import_module
24
35
Original file line number Diff line number Diff line change @@ -421,6 +421,22 @@ Information will be lost but it allows to control any potential performance impa
421421 tracer.sampler = RateSampler(sample_rate)
422422
423423
424+ Resolving deprecation warnings
425+ ------------------------------
426+ Before upgrading, it’s a good idea to resolve any deprecation warnings raised by your project.
427+ These warnings must be fixed before upgrading, otherwise ``ddtrace `` library will not work
428+ as expected. Our deprecation messages include the version where the behavior is altered or
429+ removed.
430+
431+ In Python, deprecation warnings are silenced by default, and to turn them on you may add the
432+ following flag or environment variable::
433+
434+ $ python -Wall app.py
435+
436+ # or
437+
438+ $ PYTHONWARNINGS=all python app.py
439+
424440
425441Advanced Usage
426442--------------
You can’t perform that action at this time.
0 commit comments