grassrootsgrocery / admin-portal

GNU Affero General Public License v3.0
11 stars 6 forks source link

Missing logger.info() in many of the backend server routes #122

Closed mattsahn closed 1 year ago

mattsahn commented 1 year ago

@zuechai added a lot of standard logging to server routes in PR #61. These are super helpful when looking at the server log to understand issues that Dan or others report. But, a lot of the routes are missing the standard logger.info(). For example, all of the routes in https://github.com/grassrootsgrocery/admin-portal/blob/main/server/routes/messaging.ts are not logging. All backend server routes should always do a logger.info() immediately when called in the same style as the others.