project8 / dragonfly

a dripline-based slow-control implementation
Other
0 stars 0 forks source link

level warning from AMQP handler #172

Open wcpettus opened 5 years ago

wcpettus commented 5 years ago

We have a hard-coded warning print statement in the amqp handler: https://github.com/project8/dragonfly/blob/develop/dragonfly/status_log_handlers/amqp_handler.py#L48

Which results in seeing this message for every dragonfly command. We should probably remind ourselves what the desired behavior is, remove this warning, and make an issue to get the desired behavior. Or if it's easy just do it all at once.

wcpettus commented 5 years ago

a little more detail on when/why this occurs:

To achieve a warning-less version matching our current implementation:

Future improvement - we have an outstanding issue to disable these slack broadcasts when running interactively (see #110), which can be done by changing the log level of the AMQP handler or disabling it. We should not do conflicting things in resolving these two issues.