/
Logging

Logging

Why is it being used in Eshopbox?

  • Logging is used to store exceptions, information, and warnings as messages that occur during the execution of a program. Logging helps a programmer in the debugging process of a program

Audience

All Software backend and Mean Stack Engineers

Reading Material

Link

Level

Link

Level

basic tutorial

Beginner

logging framework

Intermediate

 

Dos and Don’ts

Dos

  • Always use the logger to log any message

  • Choose correct log level for your message

  • Log concise and to the point messages.

 

Don’ts

  • Never use System.out for logging

  • Never provide same level to all logged messages

  • Never log password and other sensitive info

https://auperator.atlassian.net/wiki/spaces/~59fc3802b52b395c2fa26882/pages/4426891274

Related content