diff options
Diffstat (limited to 'gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor')
-rw-r--r-- | gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor index b1f4f321ec..09edfbebae 100644 --- a/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor +++ b/gnuradio-runtime/python/gnuradio/ctrlport/gr-ctrlport-monitor @@ -752,7 +752,10 @@ class MyApp(object): try: GNURadioControlPortClient(args.host, args.port, 'thrift', self.run, Qt.QApplication(sys.argv).exec_) except: - print("Control Port failed to connect.") + print("ControlPort failed to connect. Check the config of your endpoint.") + print("\t[ControlPort] on = True") + print("\t[PerfCounters] on = True") + print("\t[PerfCounters] export = True") sys.exit(1) def run(self, client): |