The logging tag has no wiki summary.
16
votes
11answers
2k views
Logging: Why and What?
I've never written programs which make significant use of logging. The most I've done is to capture stack traces when exceptions happen.
I was wondering, how much do other people log? Does it depend ...
11
votes
9answers
1k views
What's the best way to manage error logging for exceptions?
Introduction
If an error occurs on a website or system, it is of course useful to log it, and show the user a polite message with a reference code for the error.
And if you have lots of systems, you ...
5
votes
2answers
297 views
Concurrency pattern of logger in multithreaded application
The context:
We are working on a multi-threaded (Linux-C) application that follows a pipeline model.
Each module has a private thread and encapsulated objects which do processing of data; and each ...