File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed
src/fastcs/transport/epics Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change 3939 Waveform ,
4040)
4141from fastcs .exceptions import FastCSError
42+ from fastcs .logging import bind_logger
4243from fastcs .util import numpy_to_fastcs_datatype , snake_to_pascal
4344
4445from .options import EpicsGUIFormat , EpicsGUIOptions
4546
47+ logger = bind_logger (logger_name = __name__ )
48+
4649
4750class EpicsGUI :
4851 """For creating gui in the EPICS transports."""
@@ -145,7 +148,7 @@ def create_gui(self, options: EpicsGUIOptions | None = None) -> None:
145148 options = EpicsGUIOptions ()
146149
147150 if options .file_format is EpicsGUIFormat .edl :
148- raise FastCSError ("FastCS does not support .edl screens. " )
151+ logger . warning ("FastCS may not support all widgets in .edl screens" )
149152
150153 assert options .output_path .suffix == options .file_format .value
151154 options .output_path .parent .mkdir (parents = True , exist_ok = True )
You can’t perform that action at this time.
0 commit comments