We are building a SAAS solution and we have plans to use log4net for the logging. Let's say this application has 50k users. What would be the best approach to handle logging?
- One log file per user?
- One big log file per day?
Thanks
Generally Log consist simple text type data. I suggest 1 log per user, it is scaled solution. if you need to find any specif data log fr specific user, you could do it easily compared with big file each day. JSON Key-Pair would be more helpful.