DEV Community

Discussion on: Logging

Collapse
 
dazfuller profile image
Darren Fuller

Logging is incredibly useful for applications where you want to later review what it’s been doing, or review the details of handled exceptions. If your application consists of different components then you can use other tools to bring these various log files together and review the overall health of the application.

You can also do things like controlling the level of logging, so during development you might write out all of statements including debug level, but in production you might limit it to only info or error and above.

Definitely worth spending the time learning about it.

Collapse
 
noviicee profile image
Anamika

That seems really interesting XD XD. Thanks a lot! :)