leaderboardsgg / leaderboard-backend

The backend for Leaderboards.gg. Also holds public-facing APIs.
https://info.leaderboards.gg
GNU General Public License v3.0
12 stars 16 forks source link

Discussion: Implement Logging Library #83

Closed zysim closed 2 years ago

zysim commented 2 years ago

What's a good logging library for ASP.NET? I'm thinking it will be useful to start including it in either near the end of MVP or post.

RageCage64 commented 2 years ago

The base logger should give us everything we need: https://docs.microsoft.com/en-us/aspnet/core/fundamentals/logging/?view=aspnetcore-6.0

zysim commented 2 years ago

Oh yeah, this slipped my mind. I'll use that for now.

Tbh I thought this would've been a longer discussion lmao. Will close this if no one else chimes in with anything in a couple days.

RageCage64 commented 2 years ago

Yeah I'm just wary of adding a logging dependency before proving we have a need for it. If it gets to a point where it would benefit us I'm pretty sure ASP NET Core logging libraries are usually just a fix to Program.cs to implement.