File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 3333_INGRESS_LOCATION : str = os .getenv ("ESS_INGRESS_LOCATION" , "localhost:8080" )
3434assert _INGRESS_LOCATION , "ESS_INGRESS_LOCATION environment variable must be set"
3535_INGRESS_SECURE : bool = os .getenv ("ESS_INGRESS_SECURE" , "no" ).lower () == "yes"
36- _LOGGER .info ("INGRESS_LOCATION: %s" , _INGRESS_LOCATION )
37- _LOGGER .info ("INGRESS_SECURE: %s" , _INGRESS_SECURE )
3836
3937_AMPQ_EXCHANGE : str = "event-streams"
4038_AMPQ_URL : str = os .getenv ("ESS_AMPQ_URL" , "" )
4139assert _AMPQ_URL , "ESS_AMPQ_URL environment variable must be set"
42- _LOGGER .info ("AMPQ_URL: %s" , _AMPQ_URL )
4340
4441# SQLite database path
4542_DATABASE_PATH = "/data/event-streams.db"
6057 _DB_CONNECTION .close ()
6158 _LOGGER .info ("Created." )
6259
60+ _LOGGER .info ("INGRESS_LOCATION: %s" , _INGRESS_LOCATION )
61+ _LOGGER .info ("INGRESS_SECURE: %s" , _INGRESS_SECURE )
62+ _LOGGER .info ("AMPQ_URL: %s" , _AMPQ_URL )
63+
6364
6465# We use pydantic to declare the model (request payloads) for the internal REST API.
6566# The public API is a WebSocket API and does not require a model.
Original file line number Diff line number Diff line change 33 "disable_existing_loggers": "true",
44 "formatters": {
55 "simple": {
6- "format": "%(asctime)s.%(msecs)03dZ %(thread)d %(threadName)s %(module)s.%(funcName)s():%(lineno)d %(levelname)s # %(message)s",
6+ "format": "%(asctime)s.%(msecs)03dZ THREAD| %(thread)d %(module)s.%(funcName)s():%(lineno)d %(levelname)s # %(message)s",
77 "datefmt": "%Y-%m-%dT%H:%M:%S"
88 }
99 },
You can’t perform that action at this time.
0 commit comments