Skip to content

Commit

Permalink
remove debug statements
Browse files Browse the repository at this point in the history
  • Loading branch information
cjjacks committed Jul 24, 2024
1 parent 3f93230 commit 9bfe279
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions ait/core/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ def _load_streams(self):
common_err_msg.format(stream_type) + specific_err_msg[stream_type]
)
streams = ait.config.get(f"server.{stream_type}-streams")
log.info(streams)
if streams is None:
log.warn(err_msgs[stream_type])
else:
Expand Down Expand Up @@ -272,7 +271,6 @@ def _create_inbound_stream(self, config=None):
"""
if config is None:
raise ValueError("No stream config to create stream from.")
log.info(config)
name = self._get_stream_name(config)
stream_handlers = self._get_stream_handlers(config, name)
stream_input = config.get("input", None)
Expand Down

0 comments on commit 9bfe279

Please sign in to comment.