You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
We currently use console.log / .error on the backend, this system only works for local development, doesn't allow centralised logging of events across different parts of the system and doesn't have consistency in terms of the log structure (e.g. [DEBUG] etc. tags) making it hard to use with tools.
Describe the solution you'd like
We need to setup a system to allow centralised logging, this will likely need a logging microservice + database which other microservices can send log messages to. We will also need a common logging library used throughout the backend to make this easier.
Describe alternatives you've considered
We can continue with .log and .error for now as the gateway external API is currently blocking development on the front end.
We could use local logging but I think having designated logging microservices will result in the minimal amount of code reuse + allow ease of inspection.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
We currently use console.log / .error on the backend, this system only works for local development, doesn't allow centralised logging of events across different parts of the system and doesn't have consistency in terms of the log structure (e.g. [DEBUG] etc. tags) making it hard to use with tools.
Describe the solution you'd like
We need to setup a system to allow centralised logging, this will likely need a logging microservice + database which other microservices can send log messages to. We will also need a common logging library used throughout the backend to make this easier.
Describe alternatives you've considered
We can continue with .log and .error for now as the gateway external API is currently blocking development on the front end.
We could use local logging but I think having designated logging microservices will result in the minimal amount of code reuse + allow ease of inspection.
The text was updated successfully, but these errors were encountered: