summaryrefslogtreecommitdiff
path: root/PyMca5/PyMcaGraph/Plot.py
diff options
context:
space:
mode:
Diffstat (limited to 'PyMca5/PyMcaGraph/Plot.py')
-rw-r--r--PyMca5/PyMcaGraph/Plot.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/PyMca5/PyMcaGraph/Plot.py b/PyMca5/PyMcaGraph/Plot.py
index 4f25cd4..aca2d36 100644
--- a/PyMca5/PyMcaGraph/Plot.py
+++ b/PyMca5/PyMcaGraph/Plot.py
@@ -45,9 +45,21 @@ from . import PlotBase
from . import PlotBackend
from . import Colors
+import logging
+import traceback
+_logger = logging.getLogger(__name__)
+
DEBUG = 0
if DEBUG:
PlotBase.DEBUG = True
+ _logger.setLevel(logging.DEBUG)
+
+_logger.warning("%s is deprecated, you are advised to use "
+ "silx.gui.plot.PlotWidget instead",
+ __name__)
+for line in traceback.format_stack(limit=4):
+ _logger.warning(line.rstrip())
+
_COLORDICT = Colors.COLORDICT
_COLORLIST = [_COLORDICT['black'],